2002-05-01 04:51:32 +08:00
|
|
|
/* insns.h header file for insns.c
|
|
|
|
*
|
|
|
|
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
|
|
|
* Julian Hall. All rights reserved. The software is
|
2007-12-29 22:44:23 +08:00
|
|
|
* redistributable under the license given in the file "LICENSE"
|
2002-05-01 04:51:32 +08:00
|
|
|
* distributed in the NASM archive.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NASM_INSNS_H
|
|
|
|
#define NASM_INSNS_H
|
|
|
|
|
2007-09-18 06:49:30 +08:00
|
|
|
#include "nasm.h"
|
2007-09-25 03:30:54 +08:00
|
|
|
#include "tokens.h"
|
2002-09-13 00:34:06 +08:00
|
|
|
|
2002-05-01 04:51:32 +08:00
|
|
|
struct itemplate {
|
2007-09-11 07:32:05 +08:00
|
|
|
enum opcode opcode; /* the token, passed from "parser.c" */
|
|
|
|
int operands; /* number of operands */
|
2007-09-18 08:25:27 +08:00
|
|
|
opflags_t opd[MAX_OPERANDS]; /* bit flags for operand types */
|
2008-05-13 02:00:50 +08:00
|
|
|
const uint8_t *code; /* the code it assembles to */
|
2007-09-11 07:32:05 +08:00
|
|
|
uint32_t flags; /* some flags */
|
2002-05-01 04:51:32 +08:00
|
|
|
};
|
|
|
|
|
2007-09-19 06:08:20 +08:00
|
|
|
/* Disassembler table structure */
|
|
|
|
/* If n == -1, then p points to another table of 256
|
|
|
|
struct disasm_index, otherwise p points to a list of n
|
|
|
|
struct itemplates to consider. */
|
|
|
|
struct disasm_index {
|
|
|
|
const void *p;
|
|
|
|
int n;
|
|
|
|
};
|
|
|
|
|
2007-09-11 12:16:57 +08:00
|
|
|
/* Tables for the assembler and disassembler, respectively */
|
|
|
|
extern const struct itemplate * const nasm_instructions[];
|
2007-09-19 06:08:20 +08:00
|
|
|
extern const struct disasm_index itable[256];
|
2009-05-04 13:14:03 +08:00
|
|
|
extern const struct disasm_index * const itable_vex[2][32][8];
|
2007-09-11 12:16:57 +08:00
|
|
|
|
2008-05-14 05:29:47 +08:00
|
|
|
/* Common table for the byte codes */
|
|
|
|
extern const uint8_t nasm_bytecodes[];
|
|
|
|
|
2006-03-03 02:35:09 +08:00
|
|
|
/*
|
|
|
|
* this define is used to signify the end of an itemplate
|
2002-05-15 06:38:55 +08:00
|
|
|
*/
|
|
|
|
#define ITEMPLATE_END {-1,-1,{-1,-1,-1},NULL,0}
|
|
|
|
|
2002-05-01 04:51:32 +08:00
|
|
|
/*
|
|
|
|
* Instruction template flags. These specify which processor
|
|
|
|
* targets the instruction is eligible for, whether it is
|
|
|
|
* privileged or undocumented, and also specify extra error
|
|
|
|
* checking on the matching of the instruction.
|
|
|
|
*
|
|
|
|
* IF_SM stands for Size Match: any operand whose size is not
|
|
|
|
* explicitly specified by the template is `really' intended to be
|
|
|
|
* the same size as the first size-specified operand.
|
|
|
|
* Non-specification is tolerated in the input instruction, but
|
|
|
|
* _wrong_ specification is not.
|
|
|
|
*
|
|
|
|
* IF_SM2 invokes Size Match on only the first _two_ operands, for
|
|
|
|
* three-operand instructions such as SHLD: it implies that the
|
|
|
|
* first two operands must match in size, but that the third is
|
|
|
|
* required to be _unspecified_.
|
|
|
|
*
|
|
|
|
* IF_SB invokes Size Byte: operands with unspecified size in the
|
|
|
|
* template are really bytes, and so no non-byte specification in
|
2002-05-01 04:52:08 +08:00
|
|
|
* the input instruction will be tolerated. IF_SW similarly invokes
|
|
|
|
* Size Word, and IF_SD invokes Size Doubleword.
|
2002-05-01 04:51:32 +08:00
|
|
|
*
|
|
|
|
* (The default state if neither IF_SM nor IF_SM2 is specified is
|
|
|
|
* that any operand with unspecified size in the template is
|
|
|
|
* required to have unspecified size in the instruction too...)
|
|
|
|
*/
|
|
|
|
|
2005-01-16 06:15:51 +08:00
|
|
|
#define IF_SM 0x00000001UL /* size match */
|
|
|
|
#define IF_SM2 0x00000002UL /* size match first two operands */
|
|
|
|
#define IF_SB 0x00000004UL /* unsized operands can't be non-byte */
|
|
|
|
#define IF_SW 0x00000008UL /* unsized operands can't be non-word */
|
2007-09-18 06:49:30 +08:00
|
|
|
#define IF_SD 0x0000000CUL /* unsized operands can't be non-dword */
|
|
|
|
#define IF_SQ 0x00000010UL /* unsized operands can't be non-qword */
|
2007-09-19 04:01:32 +08:00
|
|
|
#define IF_SO 0x00000014UL /* unsized operands can't be non-oword */
|
2008-05-21 02:43:53 +08:00
|
|
|
#define IF_SY 0x00000018UL /* unsized operands can't be non-yword */
|
2009-07-26 09:15:28 +08:00
|
|
|
#define IF_SZ 0x00000038UL /* unsized operands must match the bitsize */
|
|
|
|
#define IF_SX 0x0000003CUL /* unsized operands not allowed */
|
|
|
|
#define IF_SMASK 0x0000003CUL /* mask for unsized argument size */
|
|
|
|
#define IF_AR0 0x00000040UL /* SB, SW, SD applies to argument 0 */
|
|
|
|
#define IF_AR1 0x00000080UL /* SB, SW, SD applies to argument 1 */
|
|
|
|
#define IF_AR2 0x000000C0UL /* SB, SW, SD applies to argument 2 */
|
|
|
|
#define IF_AR3 0x00000100UL /* SB, SW, SD applies to argument 3 */
|
|
|
|
#define IF_AR4 0x00000140UL /* SB, SW, SD applies to argument 4 */
|
|
|
|
#define IF_ARMASK 0x000001C0UL /* mask for unsized argument spec */
|
|
|
|
#define IF_ARSHFT 6 /* LSB in IF_ARMASK */
|
|
|
|
/* The next 3 bits aren't actually used for anything */
|
|
|
|
#define IF_PRIV 0x00000000UL /* it's a privileged instruction */
|
|
|
|
#define IF_SMM 0x00000000UL /* it's only valid in SMM */
|
|
|
|
#define IF_PROT 0x00000000UL /* it's protected mode only */
|
2007-04-12 10:40:54 +08:00
|
|
|
#define IF_NOLONG 0x00000800UL /* it's not available in long mode */
|
2005-01-16 06:15:51 +08:00
|
|
|
#define IF_UNDOC 0x00001000UL /* it's an undocumented instruction */
|
|
|
|
#define IF_FPU 0x00002000UL /* it's an FPU instruction */
|
|
|
|
#define IF_MMX 0x00004000UL /* it's an MMX instruction */
|
|
|
|
#define IF_3DNOW 0x00008000UL /* it's a 3DNow! instruction */
|
|
|
|
#define IF_SSE 0x00010000UL /* it's a SSE (KNI, MMX2) instruction */
|
|
|
|
#define IF_SSE2 0x00020000UL /* it's a SSE2 instruction */
|
|
|
|
#define IF_SSE3 0x00040000UL /* it's a SSE3 (PNI) instruction */
|
2006-03-03 02:35:09 +08:00
|
|
|
#define IF_VMX 0x00080000UL /* it's a VMX instruction */
|
2007-04-18 04:23:11 +08:00
|
|
|
#define IF_LONG 0x00100000UL /* long mode instruction */
|
2007-09-13 11:37:32 +08:00
|
|
|
#define IF_SSSE3 0x00200000UL /* it's an SSSE3 instruction */
|
2007-09-23 09:59:18 +08:00
|
|
|
#define IF_SSE4A 0x00400000UL /* AMD SSE4a */
|
|
|
|
#define IF_SSE41 0x00800000UL /* it's an SSE4.1 instruction */
|
|
|
|
#define IF_SSE42 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */
|
2007-09-18 08:25:27 +08:00
|
|
|
#define IF_SSE5 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */
|
2008-05-05 08:53:31 +08:00
|
|
|
#define IF_AVX 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */
|
2008-05-24 08:46:08 +08:00
|
|
|
#define IF_FMA 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */
|
2005-01-16 06:15:51 +08:00
|
|
|
#define IF_PMASK 0xFF000000UL /* the mask for processor types */
|
|
|
|
#define IF_PLEVEL 0x0F000000UL /* the mask for processor instr. level */
|
2008-05-24 08:46:08 +08:00
|
|
|
/* also the highest possible processor */
|
2007-04-18 04:23:11 +08:00
|
|
|
#define IF_PFMASK 0xF01FFF00UL /* the mask for disassembly "prefer" */
|
2005-01-16 06:15:51 +08:00
|
|
|
#define IF_8086 0x00000000UL /* 8086 instruction */
|
|
|
|
#define IF_186 0x01000000UL /* 186+ instruction */
|
|
|
|
#define IF_286 0x02000000UL /* 286+ instruction */
|
|
|
|
#define IF_386 0x03000000UL /* 386+ instruction */
|
|
|
|
#define IF_486 0x04000000UL /* 486+ instruction */
|
|
|
|
#define IF_PENT 0x05000000UL /* Pentium instruction */
|
|
|
|
#define IF_P6 0x06000000UL /* P6 instruction */
|
|
|
|
#define IF_KATMAI 0x07000000UL /* Katmai instructions */
|
|
|
|
#define IF_WILLAMETTE 0x08000000UL /* Willamette instructions */
|
|
|
|
#define IF_PRESCOTT 0x09000000UL /* Prescott instructions */
|
2007-04-18 04:23:11 +08:00
|
|
|
#define IF_X86_64 0x0A000000UL /* x86-64 instruction (long or legacy mode) */
|
2007-09-13 12:58:51 +08:00
|
|
|
#define IF_NEHALEM 0x0B000000UL /* Nehalem instruction */
|
2008-05-07 10:54:28 +08:00
|
|
|
#define IF_WESTMERE 0x0C000000UL /* Westmere instruction */
|
2008-05-07 10:58:52 +08:00
|
|
|
#define IF_SANDYBRIDGE 0x0D000000UL /* Sandy Bridge instruction */
|
2009-02-22 08:43:48 +08:00
|
|
|
#define IF_FUTURE 0x0E000000UL /* Future processor (not yet disclosed) */
|
2007-04-18 04:23:11 +08:00
|
|
|
#define IF_X64 (IF_LONG|IF_X86_64)
|
|
|
|
#define IF_IA64 0x0F000000UL /* IA64 instructions (in x86 mode) */
|
2005-01-16 06:15:51 +08:00
|
|
|
#define IF_CYRIX 0x10000000UL /* Cyrix-specific instruction */
|
|
|
|
#define IF_AMD 0x20000000UL /* AMD-specific instruction */
|
2002-05-01 04:51:32 +08:00
|
|
|
|
|
|
|
#endif
|