2008-01-05 02:10:08 +08:00
|
|
|
/* Copyright 2007, 2008 Free Software Foundation, Inc.
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-07-05 17:49:03 +08:00
|
|
|
This file is part of the GNU opcodes library.
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-07-05 17:49:03 +08:00
|
|
|
This library is free software; you can redistribute it and/or modify
|
2007-06-28 22:29:56 +08:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-05 17:49:03 +08:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-07-05 17:49:03 +08:00
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
License for more details.
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-05 17:49:03 +08:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
#include "sysdep.h"
|
2007-06-28 22:29:56 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "getopt.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
#include "safe-ctype.h"
|
|
|
|
|
|
|
|
#include "i386-opc.h"
|
|
|
|
|
|
|
|
#include <libintl.h>
|
|
|
|
#define _(String) gettext (String)
|
|
|
|
|
|
|
|
static const char *program_name = NULL;
|
|
|
|
static int debug = 0;
|
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
typedef struct initializer
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
const char *init;
|
|
|
|
} initializer;
|
|
|
|
|
|
|
|
static initializer cpu_flag_init [] =
|
|
|
|
{
|
|
|
|
{ "CPU_UNKNOWN_FLAGS",
|
|
|
|
"unknown" },
|
|
|
|
{ "CPU_GENERIC32_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386" },
|
|
|
|
{ "CPU_GENERIC64_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2" },
|
|
|
|
{ "CPU_NONE_FLAGS",
|
|
|
|
"0" },
|
|
|
|
{ "CPU_I186_FLAGS",
|
|
|
|
"Cpu186" },
|
|
|
|
{ "CPU_I286_FLAGS",
|
|
|
|
"Cpu186|Cpu286" },
|
|
|
|
{ "CPU_I386_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386" },
|
|
|
|
{ "CPU_I486_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486" },
|
|
|
|
{ "CPU_I586_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586" },
|
|
|
|
{ "CPU_I686_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686" },
|
|
|
|
{ "CPU_P2_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuMMX" },
|
|
|
|
{ "CPU_P3_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuMMX|CpuMMX2|CpuSSE" },
|
|
|
|
{ "CPU_P4_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2" },
|
|
|
|
{ "CPU_NOCONA_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuLM" },
|
|
|
|
{ "CPU_CORE_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3" },
|
|
|
|
{ "CPU_CORE2_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuP4|CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuLM" },
|
|
|
|
{ "CPU_K6_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|CpuK6|CpuMMX" },
|
|
|
|
{ "CPU_K6_2_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|CpuK6|CpuMMX|Cpu3dnow" },
|
|
|
|
{ "CPU_ATHLON_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6|CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA" },
|
|
|
|
{ "CPU_K8_FLAGS",
|
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6|CpuK8|CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuLM" },
|
|
|
|
{ "CPU_AMDFAM10_FLAGS",
|
2008-01-04 09:05:45 +08:00
|
|
|
"Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuK6|CpuK8|CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a|CpuABM|CpuLM" },
|
2007-09-09 09:22:57 +08:00
|
|
|
{ "CPU_MMX_FLAGS",
|
|
|
|
"CpuMMX" },
|
|
|
|
{ "CPU_SSE_FLAGS",
|
|
|
|
"CpuMMX|CpuMMX2|CpuSSE" },
|
|
|
|
{ "CPU_SSE2_FLAGS",
|
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2" },
|
|
|
|
{ "CPU_SSE3_FLAGS",
|
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3" },
|
|
|
|
{ "CPU_SSSE3_FLAGS",
|
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3" },
|
|
|
|
{ "CPU_SSE4_1_FLAGS",
|
2008-01-04 09:05:45 +08:00
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1" },
|
2007-09-09 09:22:57 +08:00
|
|
|
{ "CPU_SSE4_2_FLAGS",
|
2008-01-04 09:05:45 +08:00
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2" },
|
2008-01-23 03:16:45 +08:00
|
|
|
{ "CPU_VMX_FLAGS",
|
|
|
|
"CpuVMX" },
|
|
|
|
{ "CPU_SMX_FLAGS",
|
|
|
|
"CpuSMX" },
|
2007-09-09 09:22:57 +08:00
|
|
|
{ "CPU_3DNOW_FLAGS",
|
|
|
|
"CpuMMX|Cpu3dnow" },
|
|
|
|
{ "CPU_3DNOWA_FLAGS",
|
|
|
|
"CpuMMX|CpuMMX2|Cpu3dnow|Cpu3dnowA" },
|
|
|
|
{ "CPU_PADLOCK_FLAGS",
|
|
|
|
"CpuPadLock" },
|
|
|
|
{ "CPU_SVME_FLAGS",
|
|
|
|
"CpuSVME" },
|
|
|
|
{ "CPU_SSE4A_FLAGS",
|
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a" },
|
|
|
|
{ "CPU_ABM_FLAGS",
|
2008-01-04 09:05:45 +08:00
|
|
|
"CpuABM" },
|
2007-09-15 02:21:09 +08:00
|
|
|
{ "CPU_SSE5_FLAGS",
|
2008-01-04 09:05:45 +08:00
|
|
|
"CpuMMX|CpuMMX2|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a|CpuABM|CpuSSE5"},
|
2007-09-09 09:22:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static initializer operand_type_init [] =
|
|
|
|
{
|
|
|
|
{ "OPERAND_TYPE_NONE",
|
|
|
|
"0" },
|
|
|
|
{ "OPERAND_TYPE_REG8",
|
|
|
|
"Reg8" },
|
|
|
|
{ "OPERAND_TYPE_REG16",
|
|
|
|
"Reg16" },
|
|
|
|
{ "OPERAND_TYPE_REG32",
|
|
|
|
"Reg32" },
|
|
|
|
{ "OPERAND_TYPE_REG64",
|
|
|
|
"Reg64" },
|
|
|
|
{ "OPERAND_TYPE_IMM1",
|
|
|
|
"Imm1" },
|
|
|
|
{ "OPERAND_TYPE_IMM8",
|
|
|
|
"Imm8" },
|
|
|
|
{ "OPERAND_TYPE_IMM8S",
|
|
|
|
"Imm8S" },
|
|
|
|
{ "OPERAND_TYPE_IMM16",
|
|
|
|
"Imm16" },
|
|
|
|
{ "OPERAND_TYPE_IMM32",
|
|
|
|
"Imm32" },
|
|
|
|
{ "OPERAND_TYPE_IMM32S",
|
|
|
|
"Imm32S" },
|
|
|
|
{ "OPERAND_TYPE_IMM64",
|
|
|
|
"Imm64" },
|
|
|
|
{ "OPERAND_TYPE_BASEINDEX",
|
|
|
|
"BaseIndex" },
|
|
|
|
{ "OPERAND_TYPE_DISP8",
|
|
|
|
"Disp8" },
|
|
|
|
{ "OPERAND_TYPE_DISP16",
|
|
|
|
"Disp16" },
|
|
|
|
{ "OPERAND_TYPE_DISP32",
|
|
|
|
"Disp32" },
|
|
|
|
{ "OPERAND_TYPE_DISP32S",
|
|
|
|
"Disp32S" },
|
|
|
|
{ "OPERAND_TYPE_DISP64",
|
|
|
|
"Disp64" },
|
|
|
|
{ "OPERAND_TYPE_INOUTPORTREG",
|
|
|
|
"InOutPortReg" },
|
|
|
|
{ "OPERAND_TYPE_SHIFTCOUNT",
|
|
|
|
"ShiftCount" },
|
|
|
|
{ "OPERAND_TYPE_CONTROL",
|
|
|
|
"Control" },
|
|
|
|
{ "OPERAND_TYPE_TEST",
|
|
|
|
"Test" },
|
|
|
|
{ "OPERAND_TYPE_DEBUG",
|
|
|
|
"FloatReg" },
|
|
|
|
{ "OPERAND_TYPE_FLOATREG",
|
|
|
|
"FloatReg" },
|
|
|
|
{ "OPERAND_TYPE_FLOATACC",
|
|
|
|
"FloatAcc" },
|
|
|
|
{ "OPERAND_TYPE_SREG2",
|
|
|
|
"SReg2" },
|
|
|
|
{ "OPERAND_TYPE_SREG3",
|
|
|
|
"SReg3" },
|
|
|
|
{ "OPERAND_TYPE_ACC",
|
|
|
|
"Acc" },
|
|
|
|
{ "OPERAND_TYPE_JUMPABSOLUTE",
|
|
|
|
"JumpAbsolute" },
|
|
|
|
{ "OPERAND_TYPE_REGMMX",
|
|
|
|
"RegMMX" },
|
|
|
|
{ "OPERAND_TYPE_REGXMM",
|
|
|
|
"RegXMM" },
|
|
|
|
{ "OPERAND_TYPE_ESSEG",
|
|
|
|
"EsSeg" },
|
|
|
|
{ "OPERAND_TYPE_ACC32",
|
gas/testsuite/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* gas/i386/i386.s: Add tests for fnstsw and fstsw.
* gas/i386/inval.s: Likewise.
* gas/i386/x86_64.s: Likewise.
* gas/i386/intel.s: Use word instead of dword on ss.
* gas/i386/x86-64-inval.s: Add tests for fnstsw, fstsw, in
and out.
* gas/i386/prefix.s: Remove invalid fstsw.
* gas/i386/inval.l: Updated.
* gas/i386/intelbad.l: Likewise.
* gas/i386/i386.d: Likewise.
* gas/i386/x86_64.d: Likewise.
* gas/i386/x86-64-inval.l: Likewise.
* gas/i386/prefix.d: Updated.
gas/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* config/tc-i386.c (_i386_insn): Update comment.
(operand_type_match): Also clear unspecified.
(operand_type_register_match): Likewise.
(parse_operands): Initialize unspecified.
(i386_intel_operand): Likewise.
(match_template): Check memory and accumulator operand size.
(i386_att_operand): Clear unspecified on register operand.
(intel_e11): Likewise.
(intel_e09): Set operand size and clean unspecified for
"XXX PTR".
opcodes/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* i386-gen.c (operand_type_init): Add Dword to
OPERAND_TYPE_ACC32. Add Qword to OPERAND_TYPE_ACC64.
(opcode_modifiers): Remove CheckSize, Byte, Word, Dword,
Qword and Xmmword.
(operand_types): Add Byte, Word, Dword, Fword, Qword, Tbyte,
Xmmword, Unspecified and Anysize.
(set_bitfield): Make Mmword an alias of Qword. Make Oword
an alias of Xmmword.
* i386-opc.h (CheckSize): Removed.
(Byte): Updated.
(Word): Likewise.
(Dword): Likewise.
(Qword): Likewise.
(Xmmword): Likewise.
(FWait): Updated.
(OTMax): Likewise.
(i386_opcode_modifier): Remove checksize, byte, word, dword,
qword and xmmword.
(Fword): New.
(TBYTE): Likewise.
(Unspecified): Likewise.
(Anysize): Likewise.
(i386_operand_type): Add byte, word, dword, fword, qword,
tbyte xmmword, unspecified and anysize.
* i386-opc.tbl: Updated to use Byte, Word, Dword, Fword, Qword,
Tbyte, Xmmword, Unspecified and Anysize.
* i386-reg.tbl: Add size for accumulator.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
2008-01-13 00:05:42 +08:00
|
|
|
"Reg32|Acc|Dword" },
|
2007-09-09 09:22:57 +08:00
|
|
|
{ "OPERAND_TYPE_ACC64",
|
gas/testsuite/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* gas/i386/i386.s: Add tests for fnstsw and fstsw.
* gas/i386/inval.s: Likewise.
* gas/i386/x86_64.s: Likewise.
* gas/i386/intel.s: Use word instead of dword on ss.
* gas/i386/x86-64-inval.s: Add tests for fnstsw, fstsw, in
and out.
* gas/i386/prefix.s: Remove invalid fstsw.
* gas/i386/inval.l: Updated.
* gas/i386/intelbad.l: Likewise.
* gas/i386/i386.d: Likewise.
* gas/i386/x86_64.d: Likewise.
* gas/i386/x86-64-inval.l: Likewise.
* gas/i386/prefix.d: Updated.
gas/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* config/tc-i386.c (_i386_insn): Update comment.
(operand_type_match): Also clear unspecified.
(operand_type_register_match): Likewise.
(parse_operands): Initialize unspecified.
(i386_intel_operand): Likewise.
(match_template): Check memory and accumulator operand size.
(i386_att_operand): Clear unspecified on register operand.
(intel_e11): Likewise.
(intel_e09): Set operand size and clean unspecified for
"XXX PTR".
opcodes/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* i386-gen.c (operand_type_init): Add Dword to
OPERAND_TYPE_ACC32. Add Qword to OPERAND_TYPE_ACC64.
(opcode_modifiers): Remove CheckSize, Byte, Word, Dword,
Qword and Xmmword.
(operand_types): Add Byte, Word, Dword, Fword, Qword, Tbyte,
Xmmword, Unspecified and Anysize.
(set_bitfield): Make Mmword an alias of Qword. Make Oword
an alias of Xmmword.
* i386-opc.h (CheckSize): Removed.
(Byte): Updated.
(Word): Likewise.
(Dword): Likewise.
(Qword): Likewise.
(Xmmword): Likewise.
(FWait): Updated.
(OTMax): Likewise.
(i386_opcode_modifier): Remove checksize, byte, word, dword,
qword and xmmword.
(Fword): New.
(TBYTE): Likewise.
(Unspecified): Likewise.
(Anysize): Likewise.
(i386_operand_type): Add byte, word, dword, fword, qword,
tbyte xmmword, unspecified and anysize.
* i386-opc.tbl: Updated to use Byte, Word, Dword, Fword, Qword,
Tbyte, Xmmword, Unspecified and Anysize.
* i386-reg.tbl: Add size for accumulator.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
2008-01-13 00:05:42 +08:00
|
|
|
"Reg64|Acc|Qword" },
|
2007-09-09 09:22:57 +08:00
|
|
|
{ "OPERAND_TYPE_REG16_INOUTPORTREG",
|
|
|
|
"Reg16|InOutPortReg" },
|
|
|
|
{ "OPERAND_TYPE_DISP16_32",
|
|
|
|
"Disp16|Disp32" },
|
|
|
|
{ "OPERAND_TYPE_ANYDISP",
|
|
|
|
"Disp8|Disp16|Disp32|Disp32S|Disp64" },
|
|
|
|
{ "OPERAND_TYPE_IMM16_32",
|
|
|
|
"Imm16|Imm32" },
|
|
|
|
{ "OPERAND_TYPE_IMM16_32S",
|
|
|
|
"Imm16|Imm32S" },
|
|
|
|
{ "OPERAND_TYPE_IMM16_32_32S",
|
|
|
|
"Imm16|Imm32|Imm32S" },
|
|
|
|
{ "OPERAND_TYPE_IMM32_32S_DISP32",
|
|
|
|
"Imm32|Imm32S|Disp32" },
|
|
|
|
{ "OPERAND_TYPE_IMM64_DISP64",
|
|
|
|
"Imm64|Disp64" },
|
|
|
|
{ "OPERAND_TYPE_IMM32_32S_64_DISP32",
|
|
|
|
"Imm32|Imm32S|Imm64|Disp32" },
|
|
|
|
{ "OPERAND_TYPE_IMM32_32S_64_DISP32_64",
|
|
|
|
"Imm32|Imm32S|Imm64|Disp32|Disp64" },
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct bitfield
|
|
|
|
{
|
|
|
|
int position;
|
|
|
|
int value;
|
|
|
|
const char *name;
|
|
|
|
} bitfield;
|
|
|
|
|
|
|
|
#define BITFIELD(n) { n, 0, #n }
|
|
|
|
|
|
|
|
static bitfield cpu_flags[] =
|
|
|
|
{
|
|
|
|
BITFIELD (Cpu186),
|
|
|
|
BITFIELD (Cpu286),
|
|
|
|
BITFIELD (Cpu386),
|
|
|
|
BITFIELD (Cpu486),
|
|
|
|
BITFIELD (Cpu586),
|
|
|
|
BITFIELD (Cpu686),
|
|
|
|
BITFIELD (CpuP4),
|
|
|
|
BITFIELD (CpuK6),
|
|
|
|
BITFIELD (CpuK8),
|
|
|
|
BITFIELD (CpuMMX),
|
|
|
|
BITFIELD (CpuMMX2),
|
|
|
|
BITFIELD (CpuSSE),
|
|
|
|
BITFIELD (CpuSSE2),
|
|
|
|
BITFIELD (CpuSSE3),
|
|
|
|
BITFIELD (CpuSSSE3),
|
|
|
|
BITFIELD (CpuSSE4_1),
|
|
|
|
BITFIELD (CpuSSE4_2),
|
|
|
|
BITFIELD (CpuSSE4a),
|
2007-09-15 02:21:09 +08:00
|
|
|
BITFIELD (CpuSSE5),
|
2007-09-09 09:22:57 +08:00
|
|
|
BITFIELD (Cpu3dnow),
|
|
|
|
BITFIELD (Cpu3dnowA),
|
|
|
|
BITFIELD (CpuPadLock),
|
|
|
|
BITFIELD (CpuSVME),
|
|
|
|
BITFIELD (CpuVMX),
|
2007-10-06 03:04:06 +08:00
|
|
|
BITFIELD (CpuSMX),
|
2007-09-09 09:22:57 +08:00
|
|
|
BITFIELD (CpuABM),
|
|
|
|
BITFIELD (CpuLM),
|
|
|
|
BITFIELD (Cpu64),
|
|
|
|
BITFIELD (CpuNo64),
|
|
|
|
#ifdef CpuUnused
|
|
|
|
BITFIELD (CpuUnused),
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
static bitfield opcode_modifiers[] =
|
|
|
|
{
|
|
|
|
BITFIELD (D),
|
|
|
|
BITFIELD (W),
|
|
|
|
BITFIELD (Modrm),
|
|
|
|
BITFIELD (ShortForm),
|
|
|
|
BITFIELD (Jump),
|
|
|
|
BITFIELD (JumpDword),
|
|
|
|
BITFIELD (JumpByte),
|
|
|
|
BITFIELD (JumpInterSegment),
|
|
|
|
BITFIELD (FloatMF),
|
|
|
|
BITFIELD (FloatR),
|
|
|
|
BITFIELD (FloatD),
|
|
|
|
BITFIELD (Size16),
|
|
|
|
BITFIELD (Size32),
|
|
|
|
BITFIELD (Size64),
|
|
|
|
BITFIELD (IgnoreSize),
|
|
|
|
BITFIELD (DefaultSize),
|
|
|
|
BITFIELD (No_bSuf),
|
|
|
|
BITFIELD (No_wSuf),
|
|
|
|
BITFIELD (No_lSuf),
|
|
|
|
BITFIELD (No_sSuf),
|
|
|
|
BITFIELD (No_qSuf),
|
2007-11-02 03:06:54 +08:00
|
|
|
BITFIELD (No_ldSuf),
|
2007-09-09 09:22:57 +08:00
|
|
|
BITFIELD (FWait),
|
|
|
|
BITFIELD (IsString),
|
|
|
|
BITFIELD (RegKludge),
|
2007-10-13 05:40:38 +08:00
|
|
|
BITFIELD (FirstXmm0),
|
gas/
2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (process_suffix): Check addrprefixop0 to
see if the address size override prefix changes the size of the
first operand.
(check_byte_reg): Don't warn if byteokintel is set.
(check_long_reg): Set i.suffix to QWORD_MNEM_SUFFIX if toqword
is set.
(check_qword_reg): Set i.suffix to LONG_MNEM_SUFFIX if todword
is set.
gas/testsuite/
2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/i386.d: New.
* gas/i386/i386.s: Likewise.
* gas/i386/i386.exp: Run i386.
* gas/i386/x86_64.s: Add tests for movsx, movsbl, movsbq,
movsbw, movswl, movswq, movzx, movzb, movzbl, movzbq,
movzbw, movzwl and movzwq.
* gas/i386/x86_64.d: Updated.
opcodes/
2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (opcode_modifiers): Add ByteOkIntel, ToDword,
ToQword and AddrPrefixOp0.
* i386-opc.h (ByteOkIntel): New.
(ToDword): Likewise.
(ToQword): Likewise.
(AddrPrefixOp0): Likewise.
(IsPrefix): Updated.
(i386_opcode_modifier): Add byteokintel, todword, toqword
and addrprefixop0.
* i386-opc.tbl (cvtss2si): Add ToQword.
(cvttss2si): Likewise.
(cvtsd2si): Add ToDword.
(cvttsd2si): Likewise.
(monitor): Add AddrPrefixOp0.
(invlpga): Likewise.
(vmload): Likewise.
(vmrun): Likewise.
(vmsave): Likewise.
(pextrb): Add ByteOkIntel.
(pinsrb): Likewise.
* i386-tbl.h: Regenerated.
2007-11-02 00:27:08 +08:00
|
|
|
BITFIELD (ByteOkIntel),
|
|
|
|
BITFIELD (ToDword),
|
|
|
|
BITFIELD (ToQword),
|
|
|
|
BITFIELD (AddrPrefixOp0),
|
2007-09-09 09:22:57 +08:00
|
|
|
BITFIELD (IsPrefix),
|
|
|
|
BITFIELD (ImmExt),
|
|
|
|
BITFIELD (NoRex64),
|
|
|
|
BITFIELD (Rex64),
|
|
|
|
BITFIELD (Ugh),
|
2007-09-15 02:21:09 +08:00
|
|
|
BITFIELD (Drex),
|
|
|
|
BITFIELD (Drexv),
|
|
|
|
BITFIELD (Drexc),
|
gas/
2007-12-23 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (set_intel_mnemonic): New.
(intel_mnemonic): Likewise.
(old_gcc): Likewise.
(OPTION_MMNEMONIC): Likewise.
(OPTION_MSYNTAX): Likewise.
(OPTION_MINDEX_REG): Likewise.
(OPTION_MNAKED_REG): Likewise.
(OPTION_MOLD_GCC): Likewise.
(md_pseudo_table): Add .intel_mnemonic and .att_mnemonic.
(match_template): Don't allow AT&T/Intel mnemonic if Intel/AT&T
mnemonic is specified. Don't allow old gcc support if old_gcc
is 0.
(md_longopts): Add -mmnemonic, -msyntax, -mindex-reg,
-mmnaked-reg and -mold-gcc.
(md_parse_option): Handle OPTION_MMNEMONIC, OPTION_MSYNTAX,
OPTION_MINDEX_REG, OPTION_MNAKED_REG and OPTION_MOLD_GCC.
* doc/c-i386.texi: Docoument -mmnemonic, -msyntax, --mnaked-reg
and AT&T mnemonic vs. Intel mnemonic.
gas/testsuite/
2007-12-23 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/compat-intel.d: Pass -mmnemonic=att to assembler.
* gas/i386/compat.d: Likewise.
* gas/i386/i386.exp: Pass -mmnemonic=att to assembler for
"float". Pass -mold-gcc to assembler for "general".
opcodes/
2007-12-23 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (opcode_modifiers): Add OldGcc, ATTMnemonic and
IntelMnemonic.
* i386-opc.h (OldGcc): New.
(ATTMnemonic): Likewise.
(IntelMnemonic): Likewise.
(Opcode_Modifier_Max): Updated.
(i386_opcode_modifier): Add oldgcc, attmnemonic and
intelmnemonic.
* i386-opc.tbl: Update fadd, fdiv, fdivp, fdivr, fdivrp, fmul,
fsub, fsubp, fsubr and fsubrp with OldGcc, ATTMnemonic and
IntelMnemonic.
* i386-tbl.h: Regeneratd.
2007-12-24 13:27:39 +08:00
|
|
|
BITFIELD (OldGcc),
|
|
|
|
BITFIELD (ATTMnemonic),
|
gas/
2008-01-05 H.J. Lu <hongjiu.lu@intel.com>
* doc/c-i386.texi: Update .att_mnemonic and .intel_mnemonic.
* config/tc-i386.c (set_intel_mnemonic): Set intel_mnemonic
only.
(md_assemble): Remove Intel mode workaround.
(match_template): Check support for old gcc, AT&T mnemonic
and Intel Syntax.
(md_parse_option): Don't set intel_mnemonic to 0 for
OPTION_MOLD_GCC.
gas/testsuite/
2008-01-05 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/intel.s: Add tests for fadd, faddp, fdiv, fdivp,
fdivr, fdivrp, fmul, fmulp, fsub, fsubp, fsubr and fsubrp.
* gas/i386/intel.d: Updated.
* gas/i386/intel.e: Likewise.
opcodes/
2008-01-05 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (opcode_modifiers): Rename IntelMnemonic to
ATTSyntax.
* i386-opc.h (IntelMnemonic): Renamed to ..
(ATTSyntax): This
(Opcode_Modifier_Max): Updated.
(i386_opcode_modifier): Remove intelmnemonic. Add attsyntax
and intelsyntax.
* i386-opc.tbl: Remove IntelMnemonic and update with ATTSyntax
on fsub, fubp, fsubr, fsubrp, div, fdivp, fdivr and fdivrp.
* i386-tbl.h: Regenerated.
2008-01-06 01:07:25 +08:00
|
|
|
BITFIELD (ATTSyntax),
|
2008-01-15 09:37:56 +08:00
|
|
|
BITFIELD (IntelSyntax),
|
2007-09-09 09:22:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static bitfield operand_types[] =
|
|
|
|
{
|
|
|
|
BITFIELD (Reg8),
|
|
|
|
BITFIELD (Reg16),
|
|
|
|
BITFIELD (Reg32),
|
|
|
|
BITFIELD (Reg64),
|
|
|
|
BITFIELD (FloatReg),
|
|
|
|
BITFIELD (RegMMX),
|
|
|
|
BITFIELD (RegXMM),
|
|
|
|
BITFIELD (Imm8),
|
|
|
|
BITFIELD (Imm8S),
|
|
|
|
BITFIELD (Imm16),
|
|
|
|
BITFIELD (Imm32),
|
|
|
|
BITFIELD (Imm32S),
|
|
|
|
BITFIELD (Imm64),
|
|
|
|
BITFIELD (Imm1),
|
|
|
|
BITFIELD (BaseIndex),
|
|
|
|
BITFIELD (Disp8),
|
|
|
|
BITFIELD (Disp16),
|
|
|
|
BITFIELD (Disp32),
|
|
|
|
BITFIELD (Disp32S),
|
|
|
|
BITFIELD (Disp64),
|
|
|
|
BITFIELD (InOutPortReg),
|
|
|
|
BITFIELD (ShiftCount),
|
|
|
|
BITFIELD (Control),
|
|
|
|
BITFIELD (Debug),
|
|
|
|
BITFIELD (Test),
|
|
|
|
BITFIELD (SReg2),
|
|
|
|
BITFIELD (SReg3),
|
|
|
|
BITFIELD (Acc),
|
|
|
|
BITFIELD (FloatAcc),
|
|
|
|
BITFIELD (JumpAbsolute),
|
|
|
|
BITFIELD (EsSeg),
|
|
|
|
BITFIELD (RegMem),
|
2008-01-15 09:37:56 +08:00
|
|
|
BITFIELD (Mem),
|
gas/testsuite/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* gas/i386/i386.s: Add tests for fnstsw and fstsw.
* gas/i386/inval.s: Likewise.
* gas/i386/x86_64.s: Likewise.
* gas/i386/intel.s: Use word instead of dword on ss.
* gas/i386/x86-64-inval.s: Add tests for fnstsw, fstsw, in
and out.
* gas/i386/prefix.s: Remove invalid fstsw.
* gas/i386/inval.l: Updated.
* gas/i386/intelbad.l: Likewise.
* gas/i386/i386.d: Likewise.
* gas/i386/x86_64.d: Likewise.
* gas/i386/x86-64-inval.l: Likewise.
* gas/i386/prefix.d: Updated.
gas/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* config/tc-i386.c (_i386_insn): Update comment.
(operand_type_match): Also clear unspecified.
(operand_type_register_match): Likewise.
(parse_operands): Initialize unspecified.
(i386_intel_operand): Likewise.
(match_template): Check memory and accumulator operand size.
(i386_att_operand): Clear unspecified on register operand.
(intel_e11): Likewise.
(intel_e09): Set operand size and clean unspecified for
"XXX PTR".
opcodes/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* i386-gen.c (operand_type_init): Add Dword to
OPERAND_TYPE_ACC32. Add Qword to OPERAND_TYPE_ACC64.
(opcode_modifiers): Remove CheckSize, Byte, Word, Dword,
Qword and Xmmword.
(operand_types): Add Byte, Word, Dword, Fword, Qword, Tbyte,
Xmmword, Unspecified and Anysize.
(set_bitfield): Make Mmword an alias of Qword. Make Oword
an alias of Xmmword.
* i386-opc.h (CheckSize): Removed.
(Byte): Updated.
(Word): Likewise.
(Dword): Likewise.
(Qword): Likewise.
(Xmmword): Likewise.
(FWait): Updated.
(OTMax): Likewise.
(i386_opcode_modifier): Remove checksize, byte, word, dword,
qword and xmmword.
(Fword): New.
(TBYTE): Likewise.
(Unspecified): Likewise.
(Anysize): Likewise.
(i386_operand_type): Add byte, word, dword, fword, qword,
tbyte xmmword, unspecified and anysize.
* i386-opc.tbl: Updated to use Byte, Word, Dword, Fword, Qword,
Tbyte, Xmmword, Unspecified and Anysize.
* i386-reg.tbl: Add size for accumulator.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
2008-01-13 00:05:42 +08:00
|
|
|
BITFIELD (Byte),
|
|
|
|
BITFIELD (Word),
|
|
|
|
BITFIELD (Dword),
|
|
|
|
BITFIELD (Fword),
|
|
|
|
BITFIELD (Qword),
|
|
|
|
BITFIELD (Tbyte),
|
|
|
|
BITFIELD (Xmmword),
|
|
|
|
BITFIELD (Unspecified),
|
|
|
|
BITFIELD (Anysize),
|
2007-09-09 09:22:57 +08:00
|
|
|
#ifdef OTUnused
|
|
|
|
BITFIELD (OTUnused),
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2008-01-09 05:24:16 +08:00
|
|
|
static int lineno;
|
|
|
|
static const char *filename;
|
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
static int
|
|
|
|
compare (const void *x, const void *y)
|
|
|
|
{
|
|
|
|
const bitfield *xp = (const bitfield *) x;
|
|
|
|
const bitfield *yp = (const bitfield *) y;
|
|
|
|
return xp->position - yp->position;
|
|
|
|
}
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
static void
|
|
|
|
fail (const char *message, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, message);
|
|
|
|
fprintf (stderr, _("%s: Error: "), program_name);
|
|
|
|
vfprintf (stderr, message, args);
|
|
|
|
va_end (args);
|
|
|
|
xexit (1);
|
|
|
|
}
|
|
|
|
|
2007-09-07 06:08:08 +08:00
|
|
|
static void
|
|
|
|
process_copyright (FILE *fp)
|
|
|
|
{
|
|
|
|
fprintf (fp, "/* This file is automatically generated by i386-gen. Do not edit! */\n\
|
2008-01-05 02:10:08 +08:00
|
|
|
/* Copyright 2007, 2008 Free Software Foundation, Inc.\n\
|
2007-09-07 06:08:08 +08:00
|
|
|
\n\
|
|
|
|
This file is part of the GNU opcodes library.\n\
|
|
|
|
\n\
|
|
|
|
This library is free software; you can redistribute it and/or modify\n\
|
|
|
|
it under the terms of the GNU General Public License as published by\n\
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)\n\
|
|
|
|
any later version.\n\
|
|
|
|
\n\
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT\n\
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n\
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public\n\
|
|
|
|
License for more details.\n\
|
|
|
|
\n\
|
|
|
|
You should have received a copy of the GNU General Public License\n\
|
|
|
|
along with this program; if not, write to the Free Software\n\
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,\n\
|
|
|
|
MA 02110-1301, USA. */\n");
|
|
|
|
}
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
/* Remove leading white spaces. */
|
|
|
|
|
|
|
|
static char *
|
|
|
|
remove_leading_whitespaces (char *str)
|
|
|
|
{
|
|
|
|
while (ISSPACE (*str))
|
|
|
|
str++;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove trailing white spaces. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
remove_trailing_whitespaces (char *str)
|
|
|
|
{
|
|
|
|
size_t last = strlen (str);
|
|
|
|
|
|
|
|
if (last == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
last--;
|
|
|
|
if (ISSPACE (str [last]))
|
|
|
|
str[last] = '\0';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while (last != 0);
|
|
|
|
}
|
|
|
|
|
2007-09-07 06:55:04 +08:00
|
|
|
/* Find next field separated by SEP and terminate it. Return a
|
2007-06-28 22:29:56 +08:00
|
|
|
pointer to the one after it. */
|
|
|
|
|
|
|
|
static char *
|
2007-09-07 06:55:04 +08:00
|
|
|
next_field (char *str, char sep, char **next)
|
2007-06-28 22:29:56 +08:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = remove_leading_whitespaces (str);
|
2007-09-07 06:55:04 +08:00
|
|
|
for (str = p; *str != sep && *str != '\0'; str++);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
*str = '\0';
|
|
|
|
remove_trailing_whitespaces (p);
|
|
|
|
|
|
|
|
*next = str + 1;
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
static void
|
|
|
|
set_bitfield (const char *f, bitfield *array, unsigned int size)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (strcmp (f, "CpuSledgehammer") == 0)
|
|
|
|
f= "CpuK8";
|
gas/testsuite/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* gas/i386/i386.s: Add tests for fnstsw and fstsw.
* gas/i386/inval.s: Likewise.
* gas/i386/x86_64.s: Likewise.
* gas/i386/intel.s: Use word instead of dword on ss.
* gas/i386/x86-64-inval.s: Add tests for fnstsw, fstsw, in
and out.
* gas/i386/prefix.s: Remove invalid fstsw.
* gas/i386/inval.l: Updated.
* gas/i386/intelbad.l: Likewise.
* gas/i386/i386.d: Likewise.
* gas/i386/x86_64.d: Likewise.
* gas/i386/x86-64-inval.l: Likewise.
* gas/i386/prefix.d: Updated.
gas/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* config/tc-i386.c (_i386_insn): Update comment.
(operand_type_match): Also clear unspecified.
(operand_type_register_match): Likewise.
(parse_operands): Initialize unspecified.
(i386_intel_operand): Likewise.
(match_template): Check memory and accumulator operand size.
(i386_att_operand): Clear unspecified on register operand.
(intel_e11): Likewise.
(intel_e09): Set operand size and clean unspecified for
"XXX PTR".
opcodes/
2008-01-12 H.J. Lu <hongjiu.lu@intel.com>
PR gas/5534
* i386-gen.c (operand_type_init): Add Dword to
OPERAND_TYPE_ACC32. Add Qword to OPERAND_TYPE_ACC64.
(opcode_modifiers): Remove CheckSize, Byte, Word, Dword,
Qword and Xmmword.
(operand_types): Add Byte, Word, Dword, Fword, Qword, Tbyte,
Xmmword, Unspecified and Anysize.
(set_bitfield): Make Mmword an alias of Qword. Make Oword
an alias of Xmmword.
* i386-opc.h (CheckSize): Removed.
(Byte): Updated.
(Word): Likewise.
(Dword): Likewise.
(Qword): Likewise.
(Xmmword): Likewise.
(FWait): Updated.
(OTMax): Likewise.
(i386_opcode_modifier): Remove checksize, byte, word, dword,
qword and xmmword.
(Fword): New.
(TBYTE): Likewise.
(Unspecified): Likewise.
(Anysize): Likewise.
(i386_operand_type): Add byte, word, dword, fword, qword,
tbyte xmmword, unspecified and anysize.
* i386-opc.tbl: Updated to use Byte, Word, Dword, Fword, Qword,
Tbyte, Xmmword, Unspecified and Anysize.
* i386-reg.tbl: Add size for accumulator.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
2008-01-13 00:05:42 +08:00
|
|
|
else if (strcmp (f, "Mmword") == 0)
|
|
|
|
f= "Qword";
|
|
|
|
else if (strcmp (f, "Oword") == 0)
|
|
|
|
f= "Xmmword";
|
2007-09-09 09:22:57 +08:00
|
|
|
|
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
if (strcasecmp (array[i].name, f) == 0)
|
|
|
|
{
|
|
|
|
array[i].value = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-09 09:24:07 +08:00
|
|
|
fail (_("%s: %d: Unknown bitfield: %s\n"), filename, lineno, f);
|
2007-09-09 09:22:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_cpu_flags (FILE *table, bitfield *flags, unsigned int size,
|
|
|
|
int macro, const char *comma, const char *indent)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
fprintf (table, "%s{ { ", indent);
|
|
|
|
|
|
|
|
for (i = 0; i < size - 1; i++)
|
|
|
|
{
|
|
|
|
fprintf (table, "%d, ", flags[i].value);
|
|
|
|
if (((i + 1) % 20) == 0)
|
|
|
|
{
|
|
|
|
/* We need \\ for macro. */
|
|
|
|
if (macro)
|
|
|
|
fprintf (table, " \\\n %s", indent);
|
|
|
|
else
|
|
|
|
fprintf (table, "\n %s", indent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf (table, "%d } }%s\n", flags[i].value, comma);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
process_i386_cpu_flag (FILE *table, char *flag, int macro,
|
|
|
|
const char *comma, const char *indent)
|
|
|
|
{
|
|
|
|
char *str, *next, *last;
|
|
|
|
bitfield flags [ARRAY_SIZE (cpu_flags)];
|
|
|
|
|
|
|
|
/* Copy the default cpu flags. */
|
|
|
|
memcpy (flags, cpu_flags, sizeof (cpu_flags));
|
|
|
|
|
|
|
|
if (strcasecmp (flag, "unknown") == 0)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
/* We turn on everything except for cpu64 in case of
|
|
|
|
CPU_UNKNOWN_FLAGS. */
|
|
|
|
for (i = 0; i < ARRAY_SIZE (flags); i++)
|
|
|
|
if (flags[i].position != Cpu64)
|
|
|
|
flags[i].value = 1;
|
|
|
|
}
|
|
|
|
else if (strcmp (flag, "0"))
|
|
|
|
{
|
|
|
|
last = flag + strlen (flag);
|
|
|
|
for (next = flag; next && next < last; )
|
|
|
|
{
|
|
|
|
str = next_field (next, '|', &next);
|
|
|
|
if (str)
|
|
|
|
set_bitfield (str, flags, ARRAY_SIZE (flags));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output_cpu_flags (table, flags, ARRAY_SIZE (flags), macro,
|
|
|
|
comma, indent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_opcode_modifier (FILE *table, bitfield *modifier, unsigned int size)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
fprintf (table, " { ");
|
|
|
|
|
|
|
|
for (i = 0; i < size - 1; i++)
|
|
|
|
{
|
|
|
|
fprintf (table, "%d, ", modifier[i].value);
|
|
|
|
if (((i + 1) % 20) == 0)
|
|
|
|
fprintf (table, "\n ");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf (table, "%d },\n", modifier[i].value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
process_i386_opcode_modifier (FILE *table, char *mod)
|
|
|
|
{
|
|
|
|
char *str, *next, *last;
|
|
|
|
bitfield modifiers [ARRAY_SIZE (opcode_modifiers)];
|
|
|
|
|
|
|
|
/* Copy the default opcode modifier. */
|
|
|
|
memcpy (modifiers, opcode_modifiers, sizeof (modifiers));
|
|
|
|
|
|
|
|
if (strcmp (mod, "0"))
|
|
|
|
{
|
|
|
|
last = mod + strlen (mod);
|
|
|
|
for (next = mod; next && next < last; )
|
|
|
|
{
|
|
|
|
str = next_field (next, '|', &next);
|
|
|
|
if (str)
|
|
|
|
set_bitfield (str, modifiers, ARRAY_SIZE (modifiers));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
output_opcode_modifier (table, modifiers, ARRAY_SIZE (modifiers));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_operand_type (FILE *table, bitfield *types, unsigned int size,
|
|
|
|
int macro, const char *indent)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
fprintf (table, "{ { ");
|
|
|
|
|
|
|
|
for (i = 0; i < size - 1; i++)
|
|
|
|
{
|
|
|
|
fprintf (table, "%d, ", types[i].value);
|
|
|
|
if (((i + 1) % 20) == 0)
|
|
|
|
{
|
|
|
|
/* We need \\ for macro. */
|
|
|
|
if (macro)
|
|
|
|
fprintf (table, "\\\n%s", indent);
|
|
|
|
else
|
|
|
|
fprintf (table, "\n%s", indent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf (table, "%d } }", types[i].value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
process_i386_operand_type (FILE *table, char *op, int macro,
|
|
|
|
const char *indent)
|
|
|
|
{
|
|
|
|
char *str, *next, *last;
|
|
|
|
bitfield types [ARRAY_SIZE (operand_types)];
|
|
|
|
|
|
|
|
/* Copy the default operand type. */
|
|
|
|
memcpy (types, operand_types, sizeof (types));
|
|
|
|
|
|
|
|
if (strcmp (op, "0"))
|
|
|
|
{
|
|
|
|
last = op + strlen (op);
|
|
|
|
for (next = op; next && next < last; )
|
|
|
|
{
|
|
|
|
str = next_field (next, '|', &next);
|
|
|
|
if (str)
|
|
|
|
set_bitfield (str, types, ARRAY_SIZE (types));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
output_operand_type (table, types, ARRAY_SIZE (types), macro,
|
|
|
|
indent);
|
|
|
|
}
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
static void
|
2007-09-07 06:08:08 +08:00
|
|
|
process_i386_opcodes (FILE *table)
|
2007-06-28 22:29:56 +08:00
|
|
|
{
|
2008-01-09 05:24:16 +08:00
|
|
|
FILE *fp;
|
2007-06-28 22:29:56 +08:00
|
|
|
char buf[2048];
|
|
|
|
unsigned int i;
|
|
|
|
char *str, *p, *last;
|
|
|
|
char *name, *operands, *base_opcode, *extension_opcode;
|
2007-09-26 12:42:47 +08:00
|
|
|
char *opcode_length;
|
2007-06-28 22:29:56 +08:00
|
|
|
char *cpu_flags, *opcode_modifier, *operand_types [MAX_OPERANDS];
|
|
|
|
|
2008-01-09 05:24:16 +08:00
|
|
|
filename = "i386-opc.tbl";
|
|
|
|
fp = fopen (filename, "r");
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
if (fp == NULL)
|
2007-09-07 05:31:55 +08:00
|
|
|
fail (_("can't find i386-opc.tbl for reading, errno = %s\n"),
|
2007-09-09 09:22:57 +08:00
|
|
|
xstrerror (errno));
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, "\n/* i386 opcode table. */\n\n");
|
|
|
|
fprintf (table, "const template i386_optab[] =\n{\n");
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
while (!feof (fp))
|
|
|
|
{
|
|
|
|
if (fgets (buf, sizeof (buf), fp) == NULL)
|
|
|
|
break;
|
|
|
|
|
2008-01-09 05:24:16 +08:00
|
|
|
lineno++;
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
p = remove_leading_whitespaces (buf);
|
|
|
|
|
|
|
|
/* Skip comments. */
|
|
|
|
str = strstr (p, "//");
|
|
|
|
if (str != NULL)
|
|
|
|
str[0] = '\0';
|
|
|
|
|
|
|
|
/* Remove trailing white spaces. */
|
|
|
|
remove_trailing_whitespaces (p);
|
|
|
|
|
|
|
|
switch (p[0])
|
|
|
|
{
|
|
|
|
case '#':
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, "%s\n", p);
|
2007-06-28 22:29:56 +08:00
|
|
|
case '\0':
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
last = p + strlen (p);
|
|
|
|
|
|
|
|
/* Find name. */
|
2007-09-07 06:55:04 +08:00
|
|
|
name = next_field (p, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find number of operands. */
|
2007-09-07 06:55:04 +08:00
|
|
|
operands = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find base_opcode. */
|
2007-09-07 06:55:04 +08:00
|
|
|
base_opcode = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find extension_opcode. */
|
2007-09-07 06:55:04 +08:00
|
|
|
extension_opcode = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-26 12:42:47 +08:00
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find opcode_length. */
|
|
|
|
opcode_length = next_field (str, ',', &str);
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find cpu_flags. */
|
2007-09-07 06:55:04 +08:00
|
|
|
cpu_flags = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find opcode_modifier. */
|
2007-09-07 06:55:04 +08:00
|
|
|
opcode_modifier = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Remove the first {. */
|
|
|
|
str = remove_leading_whitespaces (str);
|
|
|
|
if (*str != '{')
|
|
|
|
abort ();
|
|
|
|
str = remove_leading_whitespaces (str + 1);
|
|
|
|
|
|
|
|
i = strlen (str);
|
|
|
|
|
|
|
|
/* There are at least "X}". */
|
|
|
|
if (i < 2)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Remove trailing white spaces and }. */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
i--;
|
|
|
|
if (ISSPACE (str[i]) || str[i] == '}')
|
|
|
|
str[i] = '\0';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while (i != 0);
|
|
|
|
|
|
|
|
last = str + i;
|
|
|
|
|
|
|
|
/* Find operand_types. */
|
|
|
|
for (i = 0; i < ARRAY_SIZE (operand_types); i++)
|
|
|
|
{
|
|
|
|
if (str >= last)
|
|
|
|
{
|
|
|
|
operand_types [i] = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-09-07 06:55:04 +08:00
|
|
|
operand_types [i] = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
if (*operand_types[i] == '0')
|
|
|
|
{
|
|
|
|
if (i != 0)
|
|
|
|
operand_types[i] = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-26 12:42:47 +08:00
|
|
|
fprintf (table, " { \"%s\", %s, %s, %s, %s,\n",
|
|
|
|
name, operands, base_opcode, extension_opcode,
|
|
|
|
opcode_length);
|
2007-09-09 09:22:57 +08:00
|
|
|
|
|
|
|
process_i386_cpu_flag (table, cpu_flags, 0, ",", " ");
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
process_i386_opcode_modifier (table, opcode_modifier);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, " { ");
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (operand_types); i++)
|
|
|
|
{
|
|
|
|
if (operand_types[i] == NULL
|
|
|
|
|| *operand_types[i] == '0')
|
|
|
|
{
|
|
|
|
if (i == 0)
|
2007-09-09 09:22:57 +08:00
|
|
|
process_i386_operand_type (table, "0", 0, "\t ");
|
2007-06-28 22:29:56 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != 0)
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, ",\n ");
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
process_i386_operand_type (table, operand_types[i], 0,
|
|
|
|
"\t ");
|
2007-06-28 22:29:56 +08:00
|
|
|
}
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, " } },\n");
|
2007-06-28 22:29:56 +08:00
|
|
|
}
|
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fclose (fp);
|
|
|
|
|
2007-09-26 12:42:47 +08:00
|
|
|
fprintf (table, " { NULL, 0, 0, 0, 0,\n");
|
2007-09-09 09:22:57 +08:00
|
|
|
|
|
|
|
process_i386_cpu_flag (table, "0", 0, ",", " ");
|
|
|
|
|
|
|
|
process_i386_opcode_modifier (table, "0");
|
|
|
|
|
|
|
|
fprintf (table, " { ");
|
|
|
|
process_i386_operand_type (table, "0", 0, "\t ");
|
|
|
|
fprintf (table, " } }\n");
|
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, "};\n");
|
2007-06-28 22:29:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-09-07 06:08:08 +08:00
|
|
|
process_i386_registers (FILE *table)
|
2007-06-28 22:29:56 +08:00
|
|
|
{
|
2008-01-09 05:24:16 +08:00
|
|
|
FILE *fp;
|
2007-06-28 22:29:56 +08:00
|
|
|
char buf[2048];
|
|
|
|
char *str, *p, *last;
|
|
|
|
char *reg_name, *reg_type, *reg_flags, *reg_num;
|
|
|
|
|
2008-01-09 05:24:16 +08:00
|
|
|
filename = "i386-reg.tbl";
|
|
|
|
fp = fopen (filename, "r");
|
2007-06-28 22:29:56 +08:00
|
|
|
if (fp == NULL)
|
2007-09-07 05:31:55 +08:00
|
|
|
fail (_("can't find i386-reg.tbl for reading, errno = %s\n"),
|
2007-09-09 09:22:57 +08:00
|
|
|
xstrerror (errno));
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, "\n/* i386 register table. */\n\n");
|
|
|
|
fprintf (table, "const reg_entry i386_regtab[] =\n{\n");
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
while (!feof (fp))
|
|
|
|
{
|
|
|
|
if (fgets (buf, sizeof (buf), fp) == NULL)
|
|
|
|
break;
|
|
|
|
|
2008-01-09 05:24:16 +08:00
|
|
|
lineno++;
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
p = remove_leading_whitespaces (buf);
|
|
|
|
|
|
|
|
/* Skip comments. */
|
|
|
|
str = strstr (p, "//");
|
|
|
|
if (str != NULL)
|
|
|
|
str[0] = '\0';
|
|
|
|
|
|
|
|
/* Remove trailing white spaces. */
|
|
|
|
remove_trailing_whitespaces (p);
|
|
|
|
|
|
|
|
switch (p[0])
|
|
|
|
{
|
|
|
|
case '#':
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, "%s\n", p);
|
2007-06-28 22:29:56 +08:00
|
|
|
case '\0':
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
last = p + strlen (p);
|
|
|
|
|
|
|
|
/* Find reg_name. */
|
2007-09-07 06:55:04 +08:00
|
|
|
reg_name = next_field (p, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find reg_type. */
|
2007-09-07 06:55:04 +08:00
|
|
|
reg_type = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find reg_flags. */
|
2007-09-07 06:55:04 +08:00
|
|
|
reg_flags = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
if (str >= last)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Find reg_num. */
|
2007-09-07 06:55:04 +08:00
|
|
|
reg_num = next_field (str, ',', &str);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
fprintf (table, " { \"%s\",\n ", reg_name);
|
|
|
|
|
|
|
|
process_i386_operand_type (table, reg_type, 0, "\t");
|
|
|
|
|
|
|
|
fprintf (table, ",\n %s, %s },\n", reg_flags, reg_num);
|
2007-06-28 22:29:56 +08:00
|
|
|
}
|
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
fprintf (table, "};\n");
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fprintf (table, "\nconst unsigned int i386_regtab_size = ARRAY_SIZE (i386_regtab);\n");
|
2007-06-28 22:29:56 +08:00
|
|
|
}
|
|
|
|
|
2007-09-09 09:22:57 +08:00
|
|
|
static void
|
|
|
|
process_i386_initializers (void)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
FILE *fp = fopen ("i386-init.h", "w");
|
|
|
|
char *init;
|
|
|
|
|
|
|
|
if (fp == NULL)
|
|
|
|
fail (_("can't create i386-init.h, errno = %s\n"),
|
|
|
|
xstrerror (errno));
|
|
|
|
|
|
|
|
process_copyright (fp);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (cpu_flag_init); i++)
|
|
|
|
{
|
|
|
|
fprintf (fp, "\n#define %s \\\n", cpu_flag_init[i].name);
|
|
|
|
init = xstrdup (cpu_flag_init[i].init);
|
|
|
|
process_i386_cpu_flag (fp, init, 1, "", " ");
|
|
|
|
free (init);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (operand_type_init); i++)
|
|
|
|
{
|
|
|
|
fprintf (fp, "\n\n#define %s \\\n ", operand_type_init[i].name);
|
|
|
|
init = xstrdup (operand_type_init[i].init);
|
|
|
|
process_i386_operand_type (fp, init, 1, " ");
|
|
|
|
free (init);
|
|
|
|
}
|
|
|
|
fprintf (fp, "\n");
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
}
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
/* Program options. */
|
|
|
|
#define OPTION_SRCDIR 200
|
|
|
|
|
|
|
|
struct option long_options[] =
|
|
|
|
{
|
|
|
|
{"srcdir", required_argument, NULL, OPTION_SRCDIR},
|
|
|
|
{"debug", no_argument, NULL, 'd'},
|
|
|
|
{"version", no_argument, NULL, 'V'},
|
|
|
|
{"help", no_argument, NULL, 'h'},
|
|
|
|
{0, no_argument, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_version (void)
|
|
|
|
{
|
|
|
|
printf ("%s: version 1.0\n", program_name);
|
|
|
|
xexit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage (FILE * stream, int status)
|
|
|
|
{
|
|
|
|
fprintf (stream, "Usage: %s [-V | --version] [-d | --debug] [--srcdir=dirname] [--help]\n",
|
|
|
|
program_name);
|
|
|
|
xexit (status);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
extern int chdir (char *);
|
|
|
|
char *srcdir = NULL;
|
2007-09-10 00:02:17 +08:00
|
|
|
int c;
|
2007-09-07 06:08:08 +08:00
|
|
|
FILE *table;
|
2007-06-28 22:29:56 +08:00
|
|
|
|
|
|
|
program_name = *argv;
|
|
|
|
xmalloc_set_program_name (program_name);
|
|
|
|
|
|
|
|
while ((c = getopt_long (argc, argv, "vVdh", long_options, 0)) != EOF)
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case OPTION_SRCDIR:
|
|
|
|
srcdir = optarg;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
case 'v':
|
|
|
|
print_version ();
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
debug = 1;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
usage (stderr, 0);
|
|
|
|
default:
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind != argc)
|
|
|
|
usage (stdout, 1);
|
|
|
|
|
|
|
|
if (srcdir != NULL)
|
|
|
|
if (chdir (srcdir) != 0)
|
|
|
|
fail (_("unable to change directory to \"%s\", errno = %s\n"),
|
2007-09-09 09:22:57 +08:00
|
|
|
srcdir, xstrerror (errno));
|
|
|
|
|
|
|
|
/* Check the unused bitfield in i386_cpu_flags. */
|
|
|
|
#ifndef CpuUnused
|
2007-09-10 00:02:17 +08:00
|
|
|
c = CpuNumOfBits - CpuMax - 1;
|
|
|
|
if (c)
|
|
|
|
fail (_("%d unused bits in i386_cpu_flags.\n"), c);
|
2007-09-09 09:22:57 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check the unused bitfield in i386_operand_type. */
|
|
|
|
#ifndef OTUnused
|
2007-09-10 00:02:17 +08:00
|
|
|
c = OTNumOfBits - OTMax - 1;
|
|
|
|
if (c)
|
|
|
|
fail (_("%d unused bits in i386_operand_type.\n"), c);
|
2007-09-09 09:22:57 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
qsort (cpu_flags, ARRAY_SIZE (cpu_flags), sizeof (cpu_flags [0]),
|
|
|
|
compare);
|
|
|
|
|
|
|
|
qsort (opcode_modifiers, ARRAY_SIZE (opcode_modifiers),
|
|
|
|
sizeof (opcode_modifiers [0]), compare);
|
|
|
|
|
|
|
|
qsort (operand_types, ARRAY_SIZE (operand_types),
|
|
|
|
sizeof (operand_types [0]), compare);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
table = fopen ("i386-tbl.h", "w");
|
|
|
|
if (table == NULL)
|
2007-09-09 09:22:57 +08:00
|
|
|
fail (_("can't create i386-tbl.h, errno = %s\n"),
|
|
|
|
xstrerror (errno));
|
2007-09-07 05:31:55 +08:00
|
|
|
|
2007-09-07 06:08:08 +08:00
|
|
|
process_copyright (table);
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 06:08:08 +08:00
|
|
|
process_i386_opcodes (table);
|
|
|
|
process_i386_registers (table);
|
2007-09-09 09:22:57 +08:00
|
|
|
process_i386_initializers ();
|
2007-06-28 22:29:56 +08:00
|
|
|
|
2007-09-07 05:31:55 +08:00
|
|
|
fclose (table);
|
|
|
|
|
2007-06-28 22:29:56 +08:00
|
|
|
exit (0);
|
|
|
|
}
|