summaryrefslogtreecommitdiff
path: root/insns.h
diff options
context:
space:
mode:
authorJin Kyu Song <jin.kyu.song@intel.com>2013-10-23 18:39:03 -0700
committerJin Kyu Song <jin.kyu.song@intel.com>2013-11-20 11:29:42 -0800
commit267d0af79c7de8887ff1618e803cafa5a528a554 (patch)
tree29b7cd0ce08337c9e9d3d92eeb21fa9aee8595ee /insns.h
parent22b1f082bd2f7b5ce4ccff5e7c89974d72f27191 (diff)
downloadnasm-267d0af79c7de8887ff1618e803cafa5a528a554.tar.gz
nasm-267d0af79c7de8887ff1618e803cafa5a528a554.tar.bz2
nasm-267d0af79c7de8887ff1618e803cafa5a528a554.zip
PREFETCHWT1: Add a new instruction flag
PREFETCHWT1 instruction's CPUID was TBD before. Now it has its new CPUID bit : PREFETCHWT1 Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com>
Diffstat (limited to 'insns.h')
-rw-r--r--insns.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/insns.h b/insns.h
index 0320e8d..dd447c5 100644
--- a/insns.h
+++ b/insns.h
@@ -135,6 +135,7 @@ extern const uint8_t nasm_bytecodes[];
#define IF_AVX512PF (UINT64_C(0x1800000000)|IF_AVX512) /* AVX-512 Prefetch instructions */
#define IF_MPX UINT64_C(0x1900000000) /* MPX instructions */
#define IF_SHA UINT64_C(0x1A00000000) /* SHA instructions */
+#define IF_PREFETCHWT1 UINT64_C(0x1F00000000) /* PREFETCHWT1 instructions */
#define IF_INSMASK UINT64_C(0xFF00000000) /* the mask for instruction set types */
#define IF_PMASK UINT64_C(0xFF000000) /* the mask for processor types */
#define IF_PLEVEL UINT64_C(0x0F000000) /* the mask for processor instr. level */