diff options
author | H. Peter Anvin <hpa@zytor.com> | 2013-11-24 11:52:32 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2013-11-24 11:53:38 -0800 |
commit | 9a1db4589596fd9f7421ef44dbd0f73490373f41 (patch) | |
tree | a16862c558ad5281318766c7da0d0615abdd4727 /iflag.h | |
parent | 8b0e5a34fcbc66e04cec3fc297c20a34e79c4dc0 (diff) | |
download | nasm-9a1db4589596fd9f7421ef44dbd0f73490373f41.tar.gz nasm-9a1db4589596fd9f7421ef44dbd0f73490373f41.tar.bz2 nasm-9a1db4589596fd9f7421ef44dbd0f73490373f41.zip |
iflag: Move instruction flag comment
Move the instruction flag comment to the Perl file where they are
defined.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'iflag.h')
-rw-r--r-- | iflag.h | 28 |
1 files changed, 0 insertions, 28 deletions
@@ -9,34 +9,6 @@ int ilog2_32(uint32_t v); -/* - * 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 - * the input instruction will be tolerated. IF_SW similarly invokes - * Size Word, and IF_SD invokes Size Doubleword. - * - * (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...) - * - * iflag_t is defined to store these flags. - */ #include "iflaggen.h" #define IF_GENBIT(bit) (UINT32_C(1) << (bit)) |