home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Software / TemaCD / Hackman / _SETUP.1 / modulep.dat < prev    next >
Text File  |  1998-09-26  |  86KB  |  1,552 lines

  1. <PACKSSWB>
  2. <PACKSSDW>
  3. [1]
  4. "PACKSSWB/PACKSSDW: Pack with Signed Saturation"
  5. ""
  6. "Packs and saturates signed words into bytes (PACKSSWB) or signed doublewords into words (PACKSSDW). The PACKSSWB instruction packs 4 signed words from the destination operand (first operand) and 4 signed words from the source operand (second operand) into 8 signed bytes in the destination operand. If the signed value of a word is beyond the range of a signed byte (that is, greater than 7FH or less than 80H), the saturated byte value of 7FH or 80H, respectively, is stored into the destination."
  7. "The PACKSSDW instruction packs 2 signed doublewords from the destination operand (first operand) and 2 signed doublewords from the source operand (second operand) into 4 signed words in the destination operand. If the signed value of a doubleword is beyond the range of a signed word (that is, greater than 7FFFH or less than 8000H), the saturated word value of 7FFFH or 8000H, respectively, is stored into the destination. The destination operand for either the PACKSSWB or PACKSSDW instruction must be an MMX register; the source operand may be either an MMX register or a quadword memory location."
  8. [2]
  9. "IF instruction is PACKSSWB"
  10. "THEN"
  11. "DEST(7..0) ¼ SaturateSignedWordToSignedByte DEST(15..0);"
  12. "DEST(15..8) ¼ SaturateSignedWordToSignedByte DEST(31..16);"
  13. "DEST(23..16) ¼ SaturateSignedWordToSignedByte DEST(47..32);"
  14. "DEST(31..24) ¼ SaturateSignedWordToSignedByte DEST(63..48);"
  15. "DEST(39..32) ¼ SaturateSignedWordToSignedByte SRC(15..0);"
  16. "DEST(47..40) ¼ SaturateSignedWordToSignedByte SRC(31..16);"
  17. "DEST(55..48) ¼ SaturateSignedWordToSignedByte SRC(47..32);"
  18. "DEST(63..56) ¼ SaturateSignedWordToSignedByte SRC(63..48);"
  19. "ELSE (* instruction is PACKSSDW *)"
  20. "DEST(15..0) ¼ SaturateSignedDoublewordToSignedWord DEST(31..0);"
  21. "DEST(31..16) ¼ SaturateSignedDoublewordToSignedWord DEST(63..32);"
  22. "DEST(47..32) ¼ SaturateSignedDoublewordToSignedWord SRC(31..0);"
  23. "DEST(63..48) ¼ SaturateSignedDoublewordToSignedWord SRC(63..32);"
  24. "FI;"
  25. [3]
  26. "None."
  27. [4]
  28. "Protected Mode Exceptions"
  29. ""
  30. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  31. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  32. "#UD If EM in CR0 is set."
  33. "#NM If TS in CR0 is set."
  34. "#MF If there is a pending FPU exception."
  35. "#PF(fault-code) If a page fault occurs."
  36. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  37. ""
  38. "Real-Address Mode Exceptions"
  39. ""
  40. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  41. "#UD If EM in CR0 is set."
  42. "#NM If TS in CR0 is set."
  43. "#MF If there is a pending FPU exception."
  44. ""
  45. "Virtual-8086 Mode Exceptions"
  46. ""
  47. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  48. "#UD If EM in CR0 is set."
  49. "#NM If TS in CR0 is set."
  50. "#MF If there is a pending FPU exception."
  51. "#PF(fault-code) If a page fault occurs."
  52. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  53. [5]
  54. "0F 63 /r PACKSSWB mm,mm/m64 Packs and saturate pack 4 signed words from mm and 4 signed words from mm/m64 into 8 signed bytes in mm."
  55. "0F 6B /r PACKSSDW mm,mm/m64 Pack and saturate 2 signed doublewords from mm and 2 signed doublewords from mm/m64 into 4 signed words in mm."
  56. [6]
  57. </PACKSSWB>
  58. </PACKSSDW>
  59. <PACKUSWB>
  60. [1]
  61. "PACKUSWB: Pack with Unsigned Saturation"
  62. ""
  63. "Packs and saturates 4 signed words from the destination operand (first operand) and 4 signed words from the source operand (second operand) into 8 unsigned bytes in the destination operand. If the signed value of a word is beyond the range of an unsigned byte (that is, greater than FFH or less than 00H), the saturated byte value of FFH or 00H, respectively, is stored into the destination. The destination operand must be an MMX register; the source operand may be either an MMX register or a quadword memory location."
  64. [2]
  65. "DEST(7..0) ¼ SaturateSignedWordToUnsignedByte DEST(15..0);"
  66. "DEST(15..8) ¼ SaturateSignedWordToUnsignedByte DEST(31..16);"
  67. "DEST(23..16) ¼ SaturateSignedWordToUnsignedByte DEST(47..32);"
  68. "DEST(31..24) ¼ SaturateSignedWordToUnsignedByte DEST(63..48);"
  69. "DEST(39..32) ¼ SaturateSignedWordToUnsignedByte SRC(15..0);"
  70. "DEST(47..40) ¼ SaturateSignedWordToUnsignedByte SRC(31..16);"
  71. "DEST(55..48) ¼ SaturateSignedWordToUnsignedByte SRC(47..32);"
  72. "DEST(63..56) ¼ SaturateSignedWordToUnsignedByte SRC(63..48);"
  73. [3]
  74. "None."
  75. [4]
  76. "Protected Mode Exceptions"
  77. ""
  78. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  79. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  80. "#UD If EM in CR0 is set."
  81. "#NM If TS in CR0 is set."
  82. "#MF If there is a pending FPU exception."
  83. "#PF(fault-code) If a page fault occurs."
  84. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  85. ""
  86. "Real-Address Mode Exceptions"
  87. ""
  88. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  89. "#UD If EM in CR0 is set."
  90. "#NM If TS in CR0 is set."
  91. "#MF If there is a pending FPU exception."
  92. ""
  93. "Virtual-8086 Mode Exceptions"
  94. ""
  95. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  96. "#UD If EM in CR0 is set."
  97. "#NM If TS in CR0 is set."
  98. "#MF If there is a pending FPU exception."
  99. "#PF(fault-code) If a page fault occurs."
  100. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  101. [5]
  102. "0F 67 /r PACKUSWB mm, mm/m64 Pack and saturate 4 signed words from mm and 4 signed words from mm/m64 into 8 unsigned bytes in mm."
  103. [6]
  104. </PACKUSWB>
  105. <PADDB>
  106. <PADDD>
  107. <PADDW>
  108. [1]
  109. "PADDB/PADDW/PADDD: Packed Add"
  110. ""
  111. "Adds the individual data elements (bytes, words, or doublewords) of the source operand (second operand) to the individual data elements of the destination operand (first operand). If the result of an individual addition exceeds the range for the specified data type (overflows), the result is wrapped around, meaning that the result is truncated so that only the lower (least significant) bits of the result are returned (that is, the carry is ignored). The destination operand must be an MMX register; the source operand can be either an MMX register or a quadword memory location."
  112. "The PADDB instruction adds the bytes of the source operand to the bytes of the destination operand and stores the results to the destination operand. When an individual result is too large to be represented in 8 bits, the lower 8 bits of the result are written to the destination operand and therefore the result wraps around."
  113. "The PADDW instruction adds the words of the source operand to the words of the destination operand and stores the results to the destination operand. When an individual result is too large to be represented in 16 bits, the lower 16 bits of the result are written to the destination operand and therefore the result wraps around."
  114. "The PADDD instruction adds the doublewords of the source operand to the doublewords of the destination operand and stores the results to the destination operand. When an individual result is too large to be represented in 32 bits, the lower 32 bits of the result are written to the destination operand and therefore the result wraps around."
  115. "Note that like the integer ADD instruction, the PADDB, PADDW, and PADDD instructions can operate on either unsigned or signed (two's complement notation) packed integers. Unlike the integer instructions, none of the MMX instructions affect the EFLAGS register. With MMX instructions, there are no carry or overflow flags to indicate when overflow has occurred, so the software must control the range of values or else use the ôwith saturationö MMX instructions."
  116. [2]
  117. "IF instruction is PADDB"
  118. "THEN"
  119. "DEST(7..0) ¼ DEST(7..0) + SRC(7..0);"
  120. "DEST(15..8) ¼ DEST(15..8) + SRC(15..8);"
  121. "DEST(23..16) ¼ DEST(23..16)+ SRC(23..16);"
  122. "DEST(31..24) ¼ DEST(31..24) + SRC(31..24);"
  123. "DEST(39..32) ¼ DEST(39..32) + SRC(39..32);"
  124. "DEST(47..40) ¼ DEST(47..40)+ SRC(47..40);"
  125. "DEST(55..48) ¼ DEST(55..48) + SRC(55..48);"
  126. "DEST(63..56) ¼ DEST(63..56) + SRC(63..56);"
  127. "ELSEIF instruction is PADDW"
  128. "THEN"
  129. "DEST(15..0) ¼ DEST(15..0) + SRC(15..0);"
  130. "DEST(31..16) ¼ DEST(31..16 ) + SRC(31..16);"
  131. "DEST(47..32) ¼ DEST(47..32 ) + SRC(47..32);"
  132. "DEST(63..48) ¼ DEST(63..48) + SRC(63..48);"
  133. "ELSE (* instruction is PADDD *)"
  134. "DEST(31..0) ¼ DEST(31..0) + SRC(31..0);"
  135. "DEST(63..32) ¼ DEST(63..32) + SRC(63..32);"
  136. "FI;"
  137. [3]
  138. "None."
  139. [4]
  140. "Protected Mode Exceptions"
  141. ""
  142. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  143. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  144. "#UD If EM in CR0 is set."
  145. "#NM If TS in CR0 is set."
  146. "#MF If there is a pending FPU exception."
  147. "#PF(fault-code) If a page fault occurs."
  148. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  149. ""
  150. "Real-Address Mode Exceptions"
  151. ""
  152. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  153. "#UD If EM in CR0 is set."
  154. "#NM If TS in CR0 is set."
  155. "#MF If there is a pending FPU exception."
  156. ""
  157. "Virtual-8086 Mode Exceptions"
  158. ""
  159. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  160. "#UD If EM in CR0 is set."
  161. "#NM If TS in CR0 is set."
  162. "#MF If there is a pending FPU exception."
  163. "#PF(fault-code) If a page fault occurs."
  164. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  165. [5]
  166. "0F FC /r PADDB mm, mm/m64 Add packed bytes from mm/m64 to packed bytes in mm."
  167. "0F FD /r PADDW mm, mm/m64 Add packed words from mm/m64 to packed words in mm."
  168. "0F FE /r PADDD mm, mm/m64 Add packed doublewords from mm/m64 to packed doublewords in mm."
  169. [6]
  170. </PADDB>
  171. </PADDD>
  172. </PADDW>
  173. <PADDSB>
  174. <PADDSW>
  175. [1]
  176. "PADDSB/PADDSW: Packed Add with Saturation"
  177. ""
  178. "Adds the individual signed data elements (bytes or words) of the source operand (second operand) to the individual signed data elements of the destination operand (first operand). If the result of an individual addition exceeds the range for the specified data type, the result is saturated. The destination operand must be an MMX register; the source operand can be either an MMX register or a quadword memory location."
  179. "The PADDSB instruction adds the signed bytes of the source operand to the signed bytes of the destination operand and stores the results to the destination operand. When an individual result is beyond the range of a signed byte (that is, greater than 7FH or less than 80H), the saturated byte value of 7FH or 80H, respectively, is written to the destination operand."
  180. "The PADDSW instruction adds the signed words of the source operand to the signed words of the destination operand and stores the results to the destination operand. When an individual result is beyond the range of a signed word (that is, greater than 7FFFH or less than 8000H), the saturated word value of 7FFFH or 8000H, respectively, is written to the destination operand."
  181. [2]
  182. "IF instruction is PADDSB"
  183. "THEN"
  184. "DEST(7..0) ¼ SaturateToSignedByte(DEST(7..0) + SRC (7..0)) ;"
  185. "DEST(15..8) ¼ SaturateToSignedByte(DEST(15..8) + SRC(15..8) );"
  186. "DEST(23..16) ¼ SaturateToSignedByte(DEST(23..16)+ SRC(23..16) );"
  187. "DEST(31..24) ¼ SaturateToSignedByte(DEST(31..24) + SRC(31..24) );"
  188. "DEST(39..32) ¼ SaturateToSignedByte(DEST(39..32) + SRC(39..32) );"
  189. "DEST(47..40) ¼ SaturateToSignedByte(DEST(47..40)+ SRC(47..40) );"
  190. "DEST(55..48) ¼ SaturateToSignedByte(DEST(55..48) + SRC(55..48) );"
  191. "DEST(63..56) ¼ SaturateToSignedByte(DEST(63..56) + SRC(63..56) );"
  192. "ELSE { (* instruction is PADDSW *)"
  193. "DEST(15..0) ¼ SaturateToSignedWord(DEST(15..0) + SRC(15..0) );"
  194. "DEST(31..16) ¼ SaturateToSignedWord(DEST(31..16) + SRC(31..16) );"
  195. "DEST(47..32) ¼ SaturateToSignedWord(DEST(47..32) + SRC(47..32) );"
  196. "DEST(63..48) ¼ SaturateToSignedWord(DEST(63..48) + SRC(63..48) );"
  197. "FI;"
  198. [3]
  199. "None."
  200. [4]
  201. "Protected Mode Exceptions"
  202. ""
  203. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  204. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  205. "#UD If EM in CR0 is set."
  206. "#NM If TS in CR0 is set."
  207. "#MF If there is a pending FPU exception."
  208. "#PF(fault-code) If a page fault occurs."
  209. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  210. ""
  211. "Real-Address Mode Exceptions"
  212. ""
  213. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  214. "#UD If EM in CR0 is set."
  215. "#NM If TS in CR0 is set."
  216. "#MF If there is a pending FPU exception."
  217. ""
  218. "Virtual-8086 Mode Exceptions"
  219. ""
  220. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  221. "#UD If EM in CR0 is set."
  222. "#NM If TS in CR0 is set."
  223. "#MF If there is a pending FPU exception."
  224. "#PF(fault-code) If a page fault occurs."
  225. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  226. [5]
  227. "0F EC /r PADDSB mm, mm/m64 Add signed packed bytes from mm/m64 to signed packed bytes in mm and saturate."
  228. "0F ED /r PADDSW mm, mm/m64 Add signed packed words from mm/m64 to signed packed words in mm and saturate."
  229. [6]
  230. </PADDSB>
  231. </PADDSW>
  232. <PADDUSB>
  233. <PADDUSW>
  234. [1]
  235. "PADDUSB/PADDUSW: Packed Add Unsigned with Saturation"
  236. ""
  237. "Adds the individual unsigned data elements (bytes or words) of the packed source operand (second operand) to the individual unsigned data elements of the packed destination operand (first operand). If the result of an individual addition exceeds the range for the specified unsigned data type, the result is saturated. The destination operand must be an MMX register; the source operand can be either an MMX register or a quadword memory location."
  238. "The PADDUSB instruction adds the unsigned bytes of the source operand to the unsigned bytes of the destination operand and stores the results to the destination operand. When an individual result is beyond the range of an unsigned byte (that is, greater than FFH), the saturated unsigned byte value of FFH is written to the destination operand."
  239. "The PADDUSW instruction adds the unsigned words of the source operand to the unsigned words of the destination operand and stores the results to the destination operand. When an individual result is beyond the range of an unsigned word (that is, greater than FFFFH), the saturated unsigned word value of FFFFH is written to the destination operand."
  240. [2]
  241. "IF instruction is PADDUSB"
  242. "THEN"
  243. "DEST(7..0) ¼ SaturateToUnsignedByte(DEST(7..0) + SRC (7..0) );"
  244. "DEST(15..8) ¼ SaturateToUnsignedByte(DEST(15..8) + SRC(15..8) );"
  245. "DEST(23..16) ¼ SaturateToUnsignedByte(DEST(23..16)+ SRC(23..16) );"
  246. "DEST(31..24) ¼ SaturateToUnsignedByte(DEST(31..24) + SRC(31..24) );"
  247. "DEST(39..32) ¼ SaturateToUnsignedByte(DEST(39..32) + SRC(39..32) );"
  248. "DEST(47..40) ¼ SaturateToUnsignedByte(DEST(47..40)+ SRC(47..40) );"
  249. "DEST(55..48) ¼ SaturateToUnsignedByte(DEST(55..48) + SRC(55..48) );"
  250. "DEST(63..56) ¼ SaturateToUnsignedByte(DEST(63..56) + SRC(63..56) );"
  251. "ELSE { (* instruction is PADDUSW *)"
  252. "DEST(15..0) ¼ SaturateToUnsignedWord(DEST(15..0) + SRC(15..0) );"
  253. "DEST(31..16) ¼ SaturateToUnsignedWord(DEST(31..16 ) + SRC(31..16) );"
  254. "DEST(47..32) ¼ SaturateToUnsignedWord(DEST(47..32 ) + SRC(47..32) );"
  255. "DEST(63..48) ¼ SaturateToUnsignedWord(DEST(63..48) + SRC(63..48) );"
  256. "FI;"
  257. [3]
  258. "None."
  259. [4]
  260. "Protected Mode Exceptions"
  261. ""
  262. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  263. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  264. "#UD If EM in CR0 is set."
  265. "#NM If TS in CR0 is set."
  266. "#MF If there is a pending FPU exception."
  267. "#PF(fault-code) If a page fault occurs."
  268. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  269. ""
  270. "Real-Address Mode Exceptions"
  271. ""
  272. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  273. "#UD If EM in CR0 is set."
  274. "#NM If TS in CR0 is set."
  275. "#MF If there is a pending FPU exception."
  276. ""
  277. "Virtual-8086 Mode Exceptions"
  278. ""
  279. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  280. "#UD If EM in CR0 is set."
  281. "#NM If TS in CR0 is set."
  282. "#MF If there is a pending FPU exception."
  283. "#PF(fault-code) If a page fault occurs."
  284. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  285. [5]
  286. "0F DC /r PADDUSB mm, mm/m64 Add unsigned packed bytes from mm/m64 to unsigned packed bytes in mm and saturate."
  287. "0F DD /r PADDUSW mm, mm/m64 Add unsigned packed words from mm/m64 to unsigned packed words in mm and saturate."
  288. [6]
  289. </PADDUSB>
  290. </PADDUSW>
  291. <PAND>
  292. [1]
  293. "PAND: Logical AND"
  294. ""
  295. "Performs a bitwise logical AND operation on the quadword source (second) and destination (first) operands and stores the result in the destination operand location. The source operand can be an MMX register or a quadword memory location; the destination operand must be an MMX register. Each bit of the result of the PAND instruction is set to 1 if the corresponding bits of the operands are both 1; otherwise it is made zero."
  296. [2]
  297. "DEST ¼ DEST AND SRC;"
  298. [3]
  299. "None."
  300. [4]
  301. "Protected Mode Exceptions"
  302. ""
  303. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  304. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  305. "#UD If EM in CR0 is set."
  306. "#NM If TS in CR0 is set."
  307. "#MF If there is a pending FPU exception."
  308. "#PF(fault-code) If a page fault occurs."
  309. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  310. ""
  311. "Real-Address Mode Exceptions"
  312. ""
  313. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  314. "#UD If EM in CR0 is set."
  315. "#NM If TS in CR0 is set."
  316. "#MF If there is a pending FPU exception."
  317. ""
  318. "Virtual-8086 Mode Exceptions"
  319. ""
  320. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  321. "#UD If EM in CR0 is set."
  322. "#NM If TS in CR0 is set."
  323. "#MF If there is a pending FPU exception."
  324. "#PF(fault-code) If a page fault occurs."
  325. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  326. [5]
  327. "0F DB /r PAND mm, mm/m64 AND quadword from mm/m64 to quadword in mm."
  328. [6]
  329. </PAND>
  330. <PANDN>
  331. [1]
  332. "PANDN: Logical AND NOT"
  333. ""
  334. "Performs a bitwise logical NOT on the quadword destination operand (first operand). Then, the instruction performs a bitwise logical AND operation on the inverted destination operand and the quadword source operand (second operand). Each bit of the result of the AND operation is set to one if the corresponding bits of the source and inverted destination bits are one; otherwise it is set to zero. The result is stored in the destination operand location."
  335. "The source operand can be an MMX register or a quadword memory location; the destination operand must be an MMX register."
  336. [2]
  337. "DEST ¼ (NOT DEST) AND SRC;"
  338. [3]
  339. "None."
  340. [4]
  341. "Protected Mode Exceptions"
  342. ""
  343. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  344. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  345. "#UD If EM in CR0 is set."
  346. "#NM If TS in CR0 is set."
  347. "#MF If there is a pending FPU exception."
  348. "#PF(fault-code) If a page fault occurs."
  349. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  350. ""
  351. "Real-Address Mode Exceptions"
  352. ""
  353. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  354. "#UD If EM in CR0 is set."
  355. "#NM If TS in CR0 is set."
  356. "#MF If there is a pending FPU exception."
  357. ""
  358. "Virtual-8086 Mode Exceptions"
  359. ""
  360. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  361. "#UD If EM in CR0 is set."
  362. "#NM If TS in CR0 is set."
  363. "#MF If there is a pending FPU exception."
  364. "#PF(fault-code) If a page fault occurs."
  365. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  366. [5]
  367. "0F DF /r PANDN mm, mm/m64 AND quadword from mm/m64 to NOT quadword in mm."
  368. [6]
  369. </PANDN>
  370. <PCMPGTB>
  371. <PCMPGTD>
  372. <PCMPGTW>
  373. [1]
  374. "PCMPGTB/PCMPGTW/PCMPGTD: Packed Compare for Greater Than"
  375. ""
  376. "Compare the individual signed data elements (bytes, words, or doublewords) in the destination operand (first operand) to the corresponding signed data elements in the source operand (second operand). If a data element in the destination operand is greater than its corresponding data element in the source operand, the data element in the destination operand is set to all ones; otherwise, it is set to all zeros. The destination operand must be an MMX register; the source operand may be either an MMX register or a 64-bit memory location."
  377. "The PCMPGTB instruction compares the signed bytes in the destination operand to the corresponding signed bytes in the source operand, with the bytes in the destination operand being set according to the results."
  378. "The PCMPGTW instruction compares the signed words in the destination operand to the corresponding signed words in the source operand, with the words in the destination operand being set according to the results."
  379. "The PCMPGTD instruction compares the signed doublewords in the destination operand to the corresponding signed doublewords in the source operand, with the doublewords in the destination operand being set according to the results."
  380. [2]
  381. "IF instruction is PCMPGTB"
  382. "THEN"
  383. "IF DEST(7..0) > SRC(7..0)"
  384. "THEN DEST(7 0) ¼ FFH;"
  385. "ELSE DEST(7..0) ¼ 0;"
  386. "* Continue comparison of second through seventh bytes in DEST and SRC *"
  387. "IF DEST(63..56) > SRC(63..56)"
  388. "THEN DEST(63..56) ¼ FFH;"
  389. "ELSE DEST(63..56) ¼ 0;"
  390. "ELSE IF instruction is PCMPGTW"
  391. "THEN"
  392. "IF DEST(15..0) > SRC(15..0)"
  393. "THEN DEST(15..0) ¼ FFFFH;"
  394. "ELSE DEST(15..0) ¼0;"
  395. "* Continue comparison of second and third bytes in DEST and SRC *"
  396. "IF DEST(63..48) > SRC(63..48)"
  397. "THEN DEST(63..48) ¼ FFFFH;"
  398. "ELSE DEST(63..48) ¼ 0;"
  399. "ELSE { (* instruction is PCMPGTD *)"
  400. "IF DEST(31..0) > SRC(31..0)"
  401. "THEN DEST(31..0) ¼ FFFFFFFFH;"
  402. "ELSE DEST(31..0) ¼ 0;"
  403. "IF DEST(63..32) > SRC(63..32)"
  404. "THEN DEST(63..32) ¼ FFFFFFFFH;"
  405. "ELSE DEST(63..32) ¼ 0;"
  406. "FI;"
  407. [3]
  408. "None."
  409. [4]
  410. "Protected Mode Exceptions"
  411. ""
  412. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  413. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  414. "#UD If EM in CR0 is set."
  415. "#NM If TS in CR0 is set."
  416. "#MF If there is a pending FPU exception."
  417. "#PF(fault-code) If a page fault occurs."
  418. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  419. ""
  420. "Real-Address Mode Exceptions"
  421. ""
  422. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  423. "#UD If EM in CR0 is set."
  424. "#NM If TS in CR0 is set."
  425. "#MF If there is a pending FPU exception."
  426. ""
  427. "Virtual-8086 Mode Exceptions"
  428. ""
  429. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  430. "#UD If EM in CR0 is set."
  431. "#NM If TS in CR0 is set."
  432. "#MF If there is a pending FPU exception."
  433. "#PF(fault-code) If a page fault occurs."
  434. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  435. [5]
  436. "0F 64 /r PCMPGTB mm, mm/m64 Compare packed bytes in mm with packed bytes in mm/m64 for greater value."
  437. "0F 65 /r PCMPGTW mm, mm/m64 Compare packed words in mm with packed words in mm/m64 for greater value."
  438. "0F 66 /r PCMPGTD mm, mm/m64 Compare packed doublewords in mm with packed doublewords in mm/m64 for greater value."
  439. [6]
  440. </PCMPGTB>
  441. </PCMPGTD>
  442. </PCMPGTW>
  443. <PMADDWD>
  444. [1]
  445. "PMADDWD: Packed Multiply and Add"
  446. ""
  447. "Multiplies the individual signed words of the destination operand by the corresponding signed words of the source operand, producing four signed, doubleword results. The two doubleword results from the multiplication of the high-order words are added together and stored in the upper doubleword of the destination operand; the two doubleword results from the multiplication of the low-order words are added together and stored in the lower doubleword of the destination operand. The destination operand must be an MMX register; the source operand may be either an MMX register or a 64-bit memory location."
  448. "The PMADDWD instruction wraps around to 80000000H only when all four words of both the source and destination operands are 8000H."
  449. [2]
  450. "DEST(31..0) ¼ (DEST(15..0) * SRC(15..0)) + (DEST(31..16) * SRC(31..16));"
  451. "DEST(63..32) ¼ (DEST(47..32) * SRC(47..32)) + (DEST(63..48) * SRC(63..48));"
  452. [3]
  453. "None."
  454. [4]
  455. "Protected Mode Exceptions"
  456. ""
  457. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  458. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  459. "#UD If EM in CR0 is set."
  460. "#NM If TS in CR0 is set."
  461. "#MF If there is a pending FPU exception."
  462. "#PF(fault-code) If a page fault occurs."
  463. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  464. ""
  465. "Real-Address Mode Exceptions"
  466. ""
  467. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  468. "#UD If EM in CR0 is set."
  469. "#NM If TS in CR0 is set."
  470. "#MF If there is a pending FPU exception."
  471. ""
  472. "Virtual-8086 Mode Exceptions"
  473. ""
  474. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  475. "#UD If EM in CR0 is set."
  476. "#NM If TS in CR0 is set."
  477. "#MF If there is a pending FPU exception."
  478. "#PF(fault-code) If a page fault occurs."
  479. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  480. [5]
  481. "0F F5 /r PMADDWD mm, mm/m64 Multiply the packed words in mm by the packed words in mm/m64. Add the 32-bit pairs of results and store in mm as doubleword"
  482. [6]
  483. </PMADDWD>
  484. <PMULHW>
  485. [1]
  486. "PMULHW: Packed Multiply High"
  487. ""
  488. "Multiplies the four signed words of the source operand (second operand) by the four signed words of the destination operand (first operand), producing four signed, doubleword, intermediate results. The high-order word of each intermediate result is then written to its corresponding word location in the destination operand. The destination operand must be an MMX register; the source operand may be either an MMX register or a 64-bit memory location."
  489. [2]
  490. "DEST(15..0) ¼ HighOrderWord(DEST(15..0) * SRC(15..0));"
  491. "DEST(31..16) ¼ HighOrderWord(DEST(31..16) * SRC(31..16));"
  492. "DEST(47..32) ¼ HighOrderWord(DEST(47..32) * SRC(47..32));"
  493. "DEST(63..48) ¼ HighOrderWord(DEST(63..48) * SRC(63..48));"
  494. [3]
  495. "None."
  496. [4]
  497. "Protected Mode Exceptions"
  498. ""
  499. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  500. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  501. "#UD If EM in CR0 is set."
  502. "#NM If TS in CR0 is set."
  503. "#MF If there is a pending FPU exception."
  504. "#PF(fault-code) If a page fault occurs."
  505. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  506. ""
  507. "Real-Address Mode Exceptions"
  508. ""
  509. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  510. "#UD If EM in CR0 is set."
  511. "#NM If TS in CR0 is set."
  512. "#MF If there is a pending FPU exception."
  513. ""
  514. "Virtual-8086 Mode Exceptions"
  515. ""
  516. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  517. "#UD If EM in CR0 is set."
  518. "#NM If TS in CR0 is set."
  519. "#MF If there is a pending FPU exception."
  520. "#PF(fault-code) If a page fault occurs."
  521. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  522. [5]
  523. "0F E5 /r PMULHW mm, mm/m64 Multiply the signed packed words in mm by the signed packed words in mm/m64, then store the high-order word of each doubleword result in mm."
  524. [6]
  525. </PMULHW>
  526. <PMULLW>
  527. [1]
  528. "PMULLW: Packed Multiply Low"
  529. ""
  530. "Multiplies the four signed or unsigned words of the source operand (second operand) with the four signed or unsigned words of the destination operand (first operand), producing four double-word, intermediate results. The low-order word of each intermediate result is then written to its corresponding word location in the destination operand. The destination operand must be an MMX register; the source operand may be either an MMX register or a 64-bit memory location."
  531. [2]
  532. "DEST(15..0) ¼ LowOrderWord(DEST(15..0) * SRC(15..0));"
  533. "DEST(31..16) ¼ LowOrderWord(DEST(31..16) * SRC(31..16));"
  534. "DEST(47..32) ¼ LowOrderWord(DEST(47..32) * SRC(47..32));"
  535. "DEST(63..48) ¼ LowOrderWord(DEST(63..48) * SRC(63..48));"
  536. [3]
  537. "None."
  538. [4]
  539. "Protected Mode Exceptions"
  540. ""
  541. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  542. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  543. "#UD If EM in CR0 is set."
  544. "#NM If TS in CR0 is set."
  545. "#MF If there is a pending FPU exception."
  546. "#PF(fault-code) If a page fault occurs."
  547. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  548. ""
  549. "Real-Address Mode Exceptions"
  550. ""
  551. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  552. "#UD If EM in CR0 is set."
  553. "#NM If TS in CR0 is set."
  554. "#MF If there is a pending FPU exception."
  555. ""
  556. "Virtual-8086 Mode Exceptions"
  557. ""
  558. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  559. "#UD If EM in CR0 is set."
  560. "#NM If TS in CR0 is set."
  561. "#MF If there is a pending FPU exception."
  562. "#PF(fault-code) If a page fault occurs."
  563. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  564. [5]
  565. "0F D5 /r PMULLW mm, mm/m64 Multiply the packed words in mm with the packed words in mm/m64, then store the low-order word of each doubleword result in mm."
  566. [6]
  567. </PMULLW>
  568. <POP>
  569. [1]
  570. "POP: Pop a Value from the Stack"
  571. ""
  572. "Loads the value from the top of the stack to the location specified with the destination operand and then increments the stack pointer. The destination operand can be a general-purpose register, memory location, or segment register."
  573. "The address-size attribute of the stack segment determines the stack pointer size (16 bits or 32 bitsùthe source address size), and the operand-size attribute of the current code segment determines the amount the stack pointer is incremented (2 bytes or 4 bytes). For example, if these address- and operand-size attributes are 32, the 32-bit ESP register (stack pointer) is incremented by 4 and, if they are 16, the 16-bit SP register is incremented by 2. (The B flag in the stack segmentÆs segment descriptor determines the stackÆs address-size attribute, and the D flag in the current code segmentÆs segment descriptor, along with prefixes, determines the operand-size attribute and also the address-size attribute of the destination operand.)"
  574. "If the destination operand is one of the segment registers DS, ES, FS, GS, or SS, the value loaded into the register must be a valid segment selector. In protected mode, popping a segment selector into a segment register automatically causes the descriptor information associated with that segment selector to be loaded into the hidden (shadow) part of the segment register and causes the selector and the descriptor information to be validated (see the ôOperationö section)."
  575. "A null value (0000-0003) may be popped into the DS, ES, FS, or GS register without causing a general protection fault. However, any subsequent attempt to reference a segment whose corresponding segment register is loaded with a null value causes a general protection exception (#GP). In this situation, no memory reference occurs and the saved value of the segment register is null. The POP instruction cannot pop a value into the CS register. To load the CS register from the stack, use the RET instruction."
  576. "If the ESP register is used as a base register for addressing a destination operand in memory, the POP instruction computes the effective address of the operand after it increments the ESP register."
  577. "The POP ESP instruction increments the stack pointer (ESP) before data at the old top of stack is written into the destination."
  578. "A POP SS instruction inhibits all interrupts, including the NMI interrupt, until after execution of the next instruction. This action allows sequential execution of POP SS and MOV ESP, EBP instructions without the danger of having an invalid stack during an interrupt 1 . However, use of the LSS instruction is the preferred method of loading the SS and ESP registers."
  579. [2]
  580. "IF StackAddrSize = 32"
  581. "THEN"
  582. "IF OperandSize = 32"
  583. "THEN"
  584. "DEST ¼ SS:ESP; (* copy a doubleword *)"
  585. "ESP ¼ ESP + 4;"
  586. "ELSE (* OperandSize = 16*)"
  587. "DEST ¼ SS:ESP; (* copy a word *)"
  588. "ESP ¼ ESP + 2;"
  589. "FI;"
  590. "ELSE (* StackAddrSize = 16* )"
  591. "IF OperandSize = 16"
  592. "THEN"
  593. "DEST ¼ SS:SP; (* copy a word *)"
  594. "SP ¼ SP + 2;"
  595. "ELSE (* OperandSize = 32 *)"
  596. "DEST ¼ SS:SP; (* copy a doubleword *)"
  597. "SP ¼ SP + 4;"
  598. "FI;"
  599. "FI;"
  600. ""
  601. "Loading a segment register while in protected mode results in special checks and actions, as described in the following listing. These checks are performed on the segment selector and the segment descriptor it points to."
  602. ""
  603. "IF SS is loaded;"
  604. "THEN"
  605. "IF segment selector is null"
  606. "THEN #GP(0);"
  607. "FI;"
  608. "IF segment selector index is outside descriptor table limits"
  609. "OR segment selector's RPL ╣ CPL"
  610. "OR segment is not a writable data segment"
  611. "OR DPL ╣ CPL"
  612. "THEN #GP(selector);"
  613. "FI;"
  614. "IF segment not marked present"
  615. "THEN #SS(selector);"
  616. "ELSE"
  617. "SS ¼ segment selector;"
  618. "SS ¼ segment descriptor;"
  619. "FI;"
  620. "FI;"
  621. "IF DS, ES, FS or GS is loaded with non-null selector;"
  622. "THEN"
  623. "IF segment selector index is outside descriptor table limits"
  624. "OR segment is not a data or readable code segment"
  625. "OR ((segment is a data or nonconforming code segment)"
  626. "AND (both RPL and CPL > DPL))"
  627. "THEN #GP(selector);"
  628. "IF segment not marked present"
  629. "THEN #NP(selector);"
  630. "ELSE"
  631. "SegmentRegister ¼ segment selector;"
  632. "SegmentRegister ¼ segment descriptor;"
  633. "FI;"
  634. "FI;"
  635. "IF DS, ES, FS or GS is loaded with a null selector;"
  636. "THEN"
  637. "SegmentRegister ¼ segment selector;"
  638. "SegmentRegister ¼ segment descriptor;"
  639. "FI;"
  640. ""
  641. "NOTE: in a sequence of instructions that individually delay interrupts past the following instruction, only the first instruction in the sequence is guaranteed to delay the interrupt, but subsequent interrupt-delaying instructions may not delay the interrupt. Thus, in the following instruction sequence:"
  642. ""
  643. "STI"
  644. "POP SS"
  645. "POP ESP"
  646. ""
  647. "interrupts may be recognized before the POP ESP executes, because STI also delays interrupts for one instruction."
  648. [3]
  649. "None."
  650. [4]
  651. "Protected Mode Exceptions"
  652. ""
  653. "#GP(0) If attempt is made to load SS register with null segment selector. If the destination operand is in a nonwritable segment. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register is used to access memory and it contains a null segment selector."
  654. "#GP(selector) If segment selector index is outside descriptor table limits. If the SS register is being loaded and the segment selector's RPL and the segment descriptorÆs DPL are not equal to the CPL. If the SS register is being loaded and the segment pointed to is a nonwritable data segment. If the DS, ES, FS, or GS register is being loaded and the segment pointed to is not a data or readable code segment. If the DS, ES, FS, or GS register is being loaded and the segment pointed to is a data or nonconforming code segment, but both the RPL and the CPL are greater than the DPL."
  655. "#SS(0) If the current top of stack is not within the stack segment. If a memory operand effective address is outside the SS segment limit."
  656. "#SS(selector) If the SS register is being loaded and the segment pointed to is marked not present."
  657. "#NP If the DS, ES, FS, or GS register is being loaded and the segment pointed to is marked not present."
  658. "#PF(fault-code) If a page fault occurs."
  659. "#AC(0) If an unaligned memory reference is made while the current privilege level is 3 and alignment checking is enabled."
  660. ""
  661. "Real-Address Mode Exceptions"
  662. ""
  663. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  664. ""
  665. "Virtual-8086 Mode Exceptions"
  666. ""
  667. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  668. "#PF(fault-code) If a page fault occurs."
  669. "#AC(0) If an unaligned memory reference is made while alignment checking is enabled."
  670. [5]
  671. "8F /0 POP m16 Pop top of stack into m16; increment stack pointer"
  672. "8F /0 POP m32 Pop top of stack into m32; increment stack pointer"
  673. "58+ rw POP r16 Pop top of stack into r16; increment stack pointer"
  674. "58+ rd POP r32 Pop top of stack into r32; increment stack pointer"
  675. "1F POP DS Pop top of stack into DS; increment stack pointer"
  676. "07 POP ES Pop top of stack into ES; increment stack pointer"
  677. "17 POP SS Pop top of stack into SS; increment stack pointer"
  678. "0F A1 POP FS Pop top of stack into FS; increment stack pointer"
  679. "0F A9 POP GS Pop top of stack into GS; increment stack pointer"
  680. [6]
  681. </POP>
  682. <POPA>
  683. <POPAD>
  684. [1]
  685. "POPA/POPAD: Pop All General-Purpose Registers"
  686. ""
  687. "Pops doublewords (POPAD) or words (POPA) from the stack into the general-purpose registers. The registers are loaded in the following order: EDI, ESI, EBP, EBX, EDX, ECX, and EAX (if the operand-size attribute is 32) and DI, SI, BP, BX, DX, CX, and AX (if the operand-size attribute is 16). (These instructions reverse the operation of the PUSHA/PUSHAD instructions.) The value on the stack for the ESP or SP register is ignored. Instead, the ESP or SP register is incremented after each register is loaded."
  688. "The POPA (pop all) and POPAD (pop all double) mnemonics reference the same opcode. The POPA instruction is intended for use when the operand-size attribute is 16 and the POPAD instruction for when the operand-size attribute is 32. Some assemblers may force the operand size to 16 when POPA is used and to 32 when POPAD is used (using the operand-size override prefix [66H] if necessary). Others may treat these mnemonics as synonyms (POPA/POPAD) and use the current setting of the operand-size attribute to determine the size of values to be popped from the stack, regardless of the mnemonic used. (The D flag in the current code segmentÆs segment descriptor determines the operand-size attribute.)"
  689. [2]
  690. "IF OperandSize = 32 (* instruction = POPAD *)"
  691. "THEN"
  692. "EDI ¼ Pop();"
  693. "ESI ¼ Pop();"
  694. "EBP ¼ Pop();"
  695. "increment ESP by 4 (* skip next 4 bytes of stack *)"
  696. "EBX ¼ Pop();"
  697. "EDX ¼ Pop();"
  698. "ECX ¼ Pop();"
  699. "EAX ¼ Pop();"
  700. "ELSE (* OperandSize = 16, instruction = POPA *)"
  701. "DI ¼ Pop();"
  702. "SI ¼ Pop();"
  703. "BP ¼ Pop();"
  704. "increment ESP by 2 (* skip next 2 bytes of stack *)"
  705. "BX ¼ Pop();"
  706. "DX ¼ Pop();"
  707. "CX ¼ Pop();"
  708. "AX ¼ Pop();"
  709. "FI;"
  710. [3]
  711. "None."
  712. [4]
  713. "Protected Mode Exceptions"
  714. ""
  715. "#SS(0) If the starting or ending stack address is not within the stack segment."
  716. "#PF(fault-code) If a page fault occurs."
  717. "#AC(0) If an unaligned memory reference is made while the current privilege level is 3 and alignment checking is enabled."
  718. ""
  719. "Real-Address Mode Exceptions"
  720. ""
  721. "#SS If the starting or ending stack address is not within the stack segment."
  722. ""
  723. "Virtual-8086 Mode Exceptions"
  724. ""
  725. "#SS(0) If the starting or ending stack address is not within the stack segment."
  726. "#PF(fault-code) If a page fault occurs."
  727. "#AC(0) If an unaligned memory reference is made while alignment checking is enabled."
  728. [5]
  729. "61 POPA Pop DI, SI, BP, BX, DX, CX, and AX"
  730. "61 POPAD Pop EDI, ESI, EBP, EBX, EDX, ECX, and EAX"
  731. [6]
  732. </POPA>
  733. </POPAD>
  734. <POPF>
  735. <POPFD>
  736. [1]
  737. "POPF/POPFD: Pop Stack into EFLAGS Register"
  738. ""
  739. "Pops a doubleword (POPFD) from the top of the stack (if the current operand-size attribute is 32) and stores the value in the EFLAGS register or pops a word from the top of the stack (if the operand-size attribute is 16) and stores it in the lower 16 bits of the EFLAGS register (that is, the FLAGS register). (These instructions reverse the operation of the PUSHF/PUSHFD instructions.)"
  740. "The POPF (pop flags) and POPFD (pop flags double) mnemonics reference the same opcode. The POPF instruction is intended for use when the operand-size attribute is 16 and the POPFD instruction for when the operand-size attribute is 32. Some assemblers may force the operand size to 16 when POPF is used and to 32 when POPFD is used. Others may treat these mnemonics as synonyms (POPF/POPFD) and use the current setting of the operand-size attribute to determine the size of values to be popped from the stack, regardless of the mnemonic used."
  741. "The effect of the POPF/POPFD instructions on the EFLAGS register changes slightly, depending on the mode of operation of the processor. When the processor is operating in protected mode at privilege level 0 (or in real-address mode, which is equivalent to privilege level 0), all the non-reserved flags in the EFLAGS register except the VIP, VIF, and VM flags can be modified. The VIP and VIF flags are cleared, and the VM flag is unaffected."
  742. "When operating in protected mode, with a privilege level greater than 0, but less than or equal to IOPL, all the flags can be modified except the IOPL field and the VIP, VIF, and VM flags. Here, the IOPL flags are unaffected, the VIP and VIF flags are cleared, and the VM flag is unaffected. The interrupt flag (IF) is altered only when executing at a level at least as privileged as the IOPL. If a POPF/POPFD instruction is executed with insufficient privilege, an exception does not occur, but the privileged bits do not change."
  743. "When operating in virtual-8086 mode, the I/O privilege level (IOPL) must be equal to 3 to use POPF/POPFD instructions and the VM, RF, IOPL, VIP, and VIF flags are unaffected. If the IOPL is less than 3, the POPF/POPFD instructions cause a general-protection exception (#GP)."
  744. [2]
  745. "IF VM=0 (* Not in Virtual-8086 Mode *)"
  746. "THEN IF CPL=0"
  747. "THEN"
  748. "IF OperandSize = 32;"
  749. "THEN"
  750. "EFLAGS ¼ Pop();"
  751. "(* All non-reserved flags except VIP, VIF, and VM can be modified; *)"
  752. "(* VIP and VIF are cleared; VM is unaffected*)"
  753. "ELSE (* OperandSize = 16 *)"
  754. "EFLAGS[15:0] ¼ Pop(); (* All non-reserved flags can be modified; *)"
  755. "FI;"
  756. "ELSE (* CPL > 0 *)"
  757. "IF OperandSize = 32;"
  758. "THEN"
  759. "EFLAGS ¼ Pop()"
  760. "(* All non-reserved bits except IOPL, VIP, and VIF can be modified; *)"
  761. "(* IOPL is unaffected; VIP and VIF are cleared; VM is unaffected *)"
  762. "ELSE (* OperandSize = 16 *)"
  763. "EFLAGS[15:0] ¼ Pop();"
  764. "(* All non-reserved bits except IOPL can be modified *)"
  765. "(* IOPL is unaffected *)"
  766. "FI;"
  767. "FI;"
  768. "ELSE (* In Virtual-8086 Mode *)"
  769. "IF IOPL=3"
  770. "THEN IF OperandSize=32"
  771. "THEN"
  772. "EFLAGS ¼ Pop()"
  773. "(* All non-reserved bits except VM, RF, IOPL, VIP, and VIF *)"
  774. "(* can be modified; VM, RF, IOPL, VIP, and VIF are unaffected *)"
  775. "ELSE"
  776. "EFLAGS[15:0] ¼ Pop()"
  777. "(* All non-reserved bits except IOPL can be modified *)"
  778. "(* IOPL is unaffected *)"
  779. "FI;"
  780. "ELSE (* IOPL < 3 *)"
  781. "#GP(0); (* trap to virtual-8086 monitor *)"
  782. "FI;"
  783. "FI;"
  784. "FI;"
  785. [3]
  786. "All flags except the reserved bits and the VM bit."
  787. [4]
  788. "Protected Mode Exceptions"
  789. ""
  790. "#SS(0) If the top of stack is not within the stack segment."
  791. "#PF(fault-code) If a page fault occurs."
  792. "#AC(0) If an unaligned memory reference is made while the current privilege level is 3 and alignment checking is enabled."
  793. ""
  794. "Real-Address Mode Exceptions"
  795. ""
  796. "#SS If the top of stack is not within the stack segment."
  797. ""
  798. "Virtual-8086 Mode Exceptions"
  799. ""
  800. "#GP(0) If the I/O privilege level is less than 3. If an attempt is made to execute the POPF/POPFD instruction with an operand-size override prefix."
  801. "#SS(0) If the top of stack is not within the stack segment."
  802. "#PF(fault-code) If a page fault occurs."
  803. "#AC(0) If an unaligned memory reference is made while alignment checking is enabled."
  804. [5]
  805. "9D POPF Pop top of stack into lower 16 bits of EFLAGS"
  806. "9D POPFD Pop top of stack into EFLAGS"
  807. [6]
  808. </POPF>
  809. </POPFD>
  810. <POR>
  811. [1]
  812. "POR: Bitwise Logical OR"
  813. ""
  814. "Performs a bitwise logical OR operation on the quadword source (second) and destination (first) operands and stores the result in the destination operand location. The source operand can be an MMX register or a quadword memory location; the destination operand must be an MMX register. Each bit of the result is made 0 if the corresponding bits of both operands are 0; otherwise the bit is set to 1."
  815. [2]
  816. "DEST ¼ DEST OR SRC;"
  817. [3]
  818. "None."
  819. [4]
  820. "Protected Mode Exceptions"
  821. ""
  822. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  823. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  824. "#UD If EM in CR0 is set."
  825. "#NM If TS in CR0 is set."
  826. "#MF If there is a pending FPU exception."
  827. "#PF(fault-code) If a page fault occurs."
  828. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  829. ""
  830. "Real-Address Mode Exceptions"
  831. ""
  832. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  833. "#UD If EM in CR0 is set."
  834. "#NM If TS in CR0 is set."
  835. "#MF If there is a pending FPU exception."
  836. ""
  837. "Virtual-8086 Mode Exceptions"
  838. ""
  839. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  840. "#UD If EM in CR0 is set."
  841. "#NM If TS in CR0 is set."
  842. "#MF If there is a pending FPU exception."
  843. "#PF(fault-code) If a page fault occurs."
  844. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  845. [5]
  846. "0F EB /r POR mm, mm/m64 OR quadword from mm/m64 to quadword in mm."
  847. [6]
  848. </POR>
  849. <PSLLD>
  850. <PSLLQ>
  851. <PSLLW>
  852. [1]
  853. "PSLLW/PSLLD/PSLLQ: Packed Shift Left Logical"
  854. ""
  855. "Shifts the bits in the data elements (words, doublewords, or quadword) in the destination operand (first operand) to the left by the number of bits specified in the unsigned count operand (second operand). The result of the shift operation is written to the destination operand. As the bits in the data elements are shifted left, the empty low-order bits are cleared (set to zero). If the value specified by the count operand is greater than 15 (for words), 31 (for doublewords), or 63 (for a quadword), then the destination operand is set to all zeros. The destination operand must be an MMX register; the count operand can be either an MMX register, a 64-bit memory location, or an 8-bit immediate."
  856. "The PSLLW instruction shifts each of the four words of the destination operand to the left by the number of bits specified in the count operand; the PSLLD instruction shifts each of the two doublewords of the destination operand; and the PSLLQ instruction shifts the 64-bit quadword in the destination operand. As the individual data elements are shifted left, the empty low-order bit positions are filled with zeros."
  857. [2]
  858. "IF instruction is PSLLW"
  859. "THEN"
  860. "DEST(15..0) ¼ DEST(15..0) << COUNT;"
  861. "DEST(31..16) ¼ DEST(31..16) << COUNT;"
  862. "DEST(47..32) ¼ DEST(47..32) << COUNT;"
  863. "DEST(63..48) ¼ DEST(63..48) << COUNT;"
  864. "ELSE IF instruction is PSLLD"
  865. "THEN {"
  866. "DEST(31..0) ¼ DEST(31..0) << COUNT;"
  867. "DEST(63..32) ¼ DEST(63..32) << COUNT;"
  868. "ELSE (* instruction is PSLLQ *)"
  869. "DEST ¼ DEST << COUNT;"
  870. "FI;"
  871. [3]
  872. "None."
  873. [4]
  874. "Protected Mode Exceptions"
  875. ""
  876. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  877. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  878. "#UD If EM in CR0 is set."
  879. "#NM If TS in CR0 is set."
  880. "#MF If there is a pending FPU exception."
  881. "#PF(fault-code) If a page fault occurs."
  882. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  883. ""
  884. "Real-Address Mode Exceptions"
  885. ""
  886. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  887. "#UD If EM in CR0 is set."
  888. "#NM If TS in CR0 is set."
  889. "#MF If there is a pending FPU exception."
  890. ""
  891. "Virtual-8086 Mode Exceptions"
  892. ""
  893. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  894. "#UD If EM in CR0 is set."
  895. "#NM If TS in CR0 is set."
  896. "#MF If there is a pending FPU exception."
  897. "#PF(fault-code) If a page fault occurs."
  898. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  899. [5]
  900. "0F F1 /r PSLLW mm, mm/m64 Shift words in mm left by amount specified in mm/m64, while shifting in zeros."
  901. "0F 71 /6, ib PSLLW mm, imm8 Shift words in mm left by imm8, while shifting in zeros."
  902. "0F F2 /r PSLLD mm, mm/m64 Shift doublewords in mm left by amount specified in mm/m64, while shifting in zeros."
  903. "0F 72 /6 ib PSLLD mm, imm8 Shift doublewords in mm by imm8, while shifting in zeros."
  904. "0F F3 /r PSLLQ mm, mm/m64 Shift mm left by amount specified in mm/m64, while shifting in zeros."
  905. "0F 73 /6 ib PSLLQ mm, imm8 Shift mm left by Imm8, while shifting in zeros."
  906. [6]
  907. </PSLLD>
  908. </PSLLQ>
  909. </PSLLW>
  910. <PSRAD>
  911. <PSRAW>
  912. [1]
  913. "PSRAW/PSRAD: Packed Shift Right Arithmetic"
  914. ""
  915. "Shifts the bits in the data elements (words or doublewords) in the destination operand (first operand) to the right by the amount of bits specified in the unsigned count operand (second operand). The result of the shift operation is written to the destination operand. The empty high-order bits of each element are filled with the initial value of the sign bit of the data element. If the value specified by the count operand is greater than 15 (for words) or 31 (for doublewords), each destination data element is filled with the initial value of the sign bit of the element. The destination operand must be an MMX register; the count operand (source operand) can be either an MMX register, a 64-bit memory location, or an 8-bit immediate."
  916. "The PSRAW instruction shifts each of the four words in the destination operand to the right by the number of bits specified in the count operand; the PSRAD instruction shifts each of the two doublewords in the destination operand. As the individual data elements are shifted right, the empty high-order bit positions are filled with the sign value."
  917. [2]
  918. "IF instruction is PSRAW"
  919. "THEN"
  920. "DEST(15..0) ¼ SignExtend (DEST(15..0) >> COUNT);"
  921. "DEST(31..16) ¼ SignExtend (DEST(31..16) >> COUNT);"
  922. "DEST(47..32) ¼ SignExtend (DEST(47..32) >> COUNT);"
  923. "DEST(63..48) ¼ SignExtend (DEST(63..48) >> COUNT);"
  924. "ELSE { (*instruction is PSRAD *)"
  925. "DEST(31..0) ¼ SignExtend (DEST(31..0) >> COUNT);"
  926. "DEST(63..32) ¼ SignExtend (DEST(63..32) >> COUNT);"
  927. "FI;"
  928. [3]
  929. "None."
  930. [4]
  931. "Protected Mode Exceptions"
  932. ""
  933. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  934. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  935. "#UD If EM in CR0 is set."
  936. "#NM If TS in CR0 is set."
  937. "#MF If there is a pending FPU exception."
  938. "#PF(fault-code) If a page fault occurs."
  939. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  940. ""
  941. "Real-Address Mode Exceptions"
  942. ""
  943. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  944. "#UD If EM in CR0 is set."
  945. "#NM If TS in CR0 is set."
  946. "#MF If there is a pending FPU exception."
  947. ""
  948. "Virtual-8086 Mode Exceptions"
  949. ""
  950. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  951. "#UD If EM in CR0 is set."
  952. "#NM If TS in CR0 is set."
  953. "#MF If there is a pending FPU exception."
  954. "#PF(fault-code) If a page fault occurs."
  955. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  956. [5]
  957. "0F E1 /r PSRAW mm, mm/m64 Shift words in mm right by amount specified in mm/m64 while shifting in sign bits."
  958. "0F 71 /4 ib PSRAW mm, imm8 Shift words in mm right by imm8 while shifting in sign bits"
  959. "0F E2 /r PSRAD mm, mm/m64 Shift doublewords in mm right by amount specified in mm/m64 while shifting in sign bits."
  960. "0F 72 /4 ib PSRAD mm, imm8 Shift doublewords in mm right by imm8 while shifting in sign bits."
  961. [6]
  962. </PSRAD>
  963. </PSRAW>
  964. <PSRLD>
  965. <PSRLQ>
  966. <PSRLW>
  967. [1]
  968. "PSRLW/PSRLD/PSRLQ: Packed Shift Right Logical"
  969. ""
  970. "Shifts the bits in the data elements (words, doublewords, or quadword) in the destination operand (first operand) to the right by the number of bits specified in the unsigned count operand (second operand). The result of the shift operation is written to the destination operand. As the bits in the data elements are shifted right, the empty high-order bits are cleared (set to zero). If the value specified by the count operand is greater than 15 (for words), 31 (for doublewords), or 63 (for a quadword), then the destination operand is set to all zeros. The destination operand must be an MMX register; the count operand can be either an MMX register, a 64-bit memory location, or an 8-bit immediate."
  971. "The PSRLW instruction shifts each of the four words of the destination operand to the right by the number of bits specified in the count operand; the PSRLD instruction shifts each of the two doublewords of the destination operand; and the PSRLQ instruction shifts the 64-bit quadword in the destination operand. As the individual data elements are shifted right, the empty high-order bit positions are filled with zeros."
  972. [2]
  973. "IF instruction is PSRLW"
  974. "THEN {"
  975. "DEST(15..0) ¼ DEST(15..0) >> COUNT;"
  976. "DEST(31..16) ¼ DEST(31..16) >> COUNT;"
  977. "DEST(47..32) ¼ DEST(47..32) >> COUNT;"
  978. "DEST(63..48) ¼ DEST(63..48) >> COUNT;"
  979. "ELSE IF instruction is PSRLD"
  980. "THEN {"
  981. "DEST(31..0) ¼ DEST(31..0) >> COUNT;"
  982. "DEST(63..32) ¼ DEST(63..32) >> COUNT;"
  983. "ELSE (* instruction is PSRLQ *)"
  984. "DEST ¼ DEST >> COUNT;"
  985. "FI;"
  986. [3]
  987. "None."
  988. [4]
  989. "Protected Mode Exceptions"
  990. ""
  991. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  992. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  993. "#UD If EM in CR0 is set."
  994. "#NM If TS in CR0 is set."
  995. "#MF If there is a pending FPU exception."
  996. "#PF(fault-code) If a page fault occurs."
  997. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  998. ""
  999. "Real-Address Mode Exceptions"
  1000. ""
  1001. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1002. "#UD If EM in CR0 is set."
  1003. "#NM If TS in CR0 is set."
  1004. "#MF If there is a pending FPU exception."
  1005. ""
  1006. "Virtual-8086 Mode Exceptions"
  1007. ""
  1008. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1009. "#UD If EM in CR0 is set."
  1010. "#NM If TS in CR0 is set."
  1011. "#MF If there is a pending FPU exception."
  1012. "#PF(fault-code) If a page fault occurs."
  1013. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1014. [5]
  1015. "0F D1 /r PSRLW mm, mm/m64 Shift words in mm right by amount specified in mm/m64 while shifting in zeros."
  1016. "0F 71 /2 ib PSRLW mm, imm8 Shift words in mm right by imm8."
  1017. "0F D2 /r PSRLD mm, mm/m64 Shift doublewords in mm right by amount specified in mm/m64 while shifting in zeros."
  1018. "0F 72 /2 ib PSRLD mm, imm8 Shift doublewords in mm right by imm8."
  1019. "0F D3 /r PSRLQ mm, mm/m64 Shift mm right by amount specified in mm/m64 while shifting in zeros."
  1020. "0F 73 /2 ib PSRLQ mm, imm8 Shift mm right by imm8 while shifting in zeros."
  1021. [6]
  1022. </PSRLD>
  1023. </PSRLQ>
  1024. </PSRLW>
  1025. <PSUBB>
  1026. <PSUBD>
  1027. <PSUBW>
  1028. [1]
  1029. "PSUBB/PSUBW/PSUBD: Packed Subtract"
  1030. ""
  1031. "Subtracts the individual data elements (bytes, words, or doublewords) of the source operand (second operand) from the individual data elements of the destination operand (first operand). If the result of a subtraction exceeds the range for the specified data type (overflows), the result is wrapped around, meaning that the result is truncated so that only the lower (least significant) bits of the result are returned (that is, the carry is ignored). The destination operand must be an MMX register; the source operand can be either an MMX register or a quadword memory location. The PSUBB instruction subtracts the bytes of the source operand from the bytes of the destination operand and stores the results to the destination operand. When an individual result is too large to be represented in 8 bits, the lower 8 bits of the result are written to the destination operand and therefore the result wraps around."
  1032. "The PSUBW instruction subtracts the words of the source operand from the words of the destination operand and stores the results to the destination operand. When an individual result is too large to be represented in 16 bits, the lower 16 bits of the result are written to the destination operand and therefore the result wraps around."
  1033. "The PSUBD instruction subtracts the doublewords of the source operand from the doublewords of the destination operand and stores the results to the destination operand. When an individual result is too large to be represented in 32 bits, the lower 32 bits of the result are written to the destination operand and therefore the result wraps around. Note that like the integer SUB instruction, the PSUBB, PSUBW, and PSUBD instructions can operate on either unsigned or signed (two's complement notation) packed integers. Unlike the integer instructions, none of the MMX instructions affect the EFLAGS register. With MMX instructions, there are no carry or overflow flags to indicate when overflow has occurred, so the software must control the range of values or else use the ôwith saturationö MMX instructions."
  1034. [2]
  1035. "IF instruction is PSUBB"
  1036. "THEN"
  1037. "DEST(7..0) ¼ DEST(7..0) û SRC(7..0);"
  1038. "DEST(15..8) ¼ DEST(15..8) û SRC(15..8);"
  1039. "DEST(23..16) ¼ DEST(23..16) û SRC(23..16);"
  1040. "DEST(31..24) ¼ DEST(31..24) û SRC(31..24);"
  1041. "DEST(39..32) ¼ DEST(39..32) û SRC(39..32);"
  1042. "DEST(47..40) ¼ DEST(47..40) û SRC(47..40);"
  1043. "DEST(55..48) ¼ DEST(55..48) û SRC(55..48);"
  1044. "DEST(63..56) ¼ DEST(63..56) û SRC(63..56);"
  1045. "ELSEIF instruction is PSUBW"
  1046. "THEN"
  1047. "DEST(15..0) ¼ DEST(15..0) û SRC(15..0);"
  1048. "DEST(31..16) ¼ DEST(31..16) û SRC(31..16);"
  1049. "DEST(47..32) ¼ DEST(47..32) û SRC(47..32);"
  1050. "DEST(63..48) ¼ DEST(63..48) û SRC(63..48);"
  1051. "ELSE { (* instruction is PSUBD *)"
  1052. "DEST(31..0) ¼ DEST(31..0) û SRC(31..0);"
  1053. "DEST(63..32) ¼ DEST(63..32) û SRC(63..32);"
  1054. "FI;"
  1055. [3]
  1056. "None."
  1057. [4]
  1058. "Protected Mode Exceptions"
  1059. ""
  1060. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  1061. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1062. "#UD If EM in CR0 is set."
  1063. "#NM If TS in CR0 is set."
  1064. "#MF If there is a pending FPU exception."
  1065. "#PF(fault-code) If a page fault occurs."
  1066. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1067. ""
  1068. "Real-Address Mode Exceptions"
  1069. ""
  1070. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1071. "#UD If EM in CR0 is set."
  1072. "#NM If TS in CR0 is set."
  1073. "#MF If there is a pending FPU exception."
  1074. ""
  1075. "Virtual-8086 Mode Exceptions"
  1076. ""
  1077. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1078. "#UD If EM in CR0 is set."
  1079. "#NM If TS in CR0 is set."
  1080. "#MF If there is a pending FPU exception."
  1081. "#PF(fault-code) If a page fault occurs."
  1082. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1083. [5]
  1084. "0F F8 /r PSUBB mm, mm/m64 Subtract packed bytes in mm/m64 from packed bytes in mm."
  1085. "0F F9 /r PSUBW mm, mm/m64 Subtract packed words in mm/m64 from packed words in mm."
  1086. "0F FA /r PSUBD mm, mm/m64 Subtract packed doublewords in mm/m64 from packed doublewords in mm."
  1087. [6]
  1088. </PSUBB>
  1089. </PSUBD>
  1090. </PSUBW>
  1091. <PSUBSB>
  1092. <PSUBSW>
  1093. [1]
  1094. "PSUBSB/PSUBSW: Packed Subtract with Saturation"
  1095. ""
  1096. "Subtracts the individual signed data elements (bytes or words) of the source operand (second operand) from the individual signed data elements of the destination operand (first operand). If the result of a subtraction exceeds the range for the specified data type, the result is saturated. The destination operand must be an MMX register; the source operand can be either an MMX register or a quadword memory location."
  1097. "The PSUBSB instruction subtracts the signed bytes of the source operand from the signed bytes of the destination operand and stores the results to the destination operand. When an individual result is beyond the range of a signed byte (that is, greater than 7FH or less than 80H), the saturated byte value of 7FH or 80H, respectively, is written to the destination operand."
  1098. "The PSUBSW instruction subtracts the signed words of the source operand from the signed words of the destination operand and stores the results to the destination operand. When an individual result is beyond the range of a signed word (that is, greater than 7FFFH or less than 8000H), the saturated word value of 7FFFH or 8000H, respectively, is written to the destination operand."
  1099. [2]
  1100. "IF instruction is PSUBSB"
  1101. "THEN"
  1102. "DEST(7..0) ¼ SaturateToSignedByte(DEST(7..0) û SRC (7..0));"
  1103. "DEST(15..8) ¼ SaturateToSignedByte(DEST(15..8) û SRC(15..8));"
  1104. "DEST(23..16) ¼ SaturateToSignedByte(DEST(23..16) û SRC(23..16));"
  1105. "DEST(31..24) ¼ SaturateToSignedByte(DEST(31..24) û SRC(31..24));"
  1106. "DEST(39..32) ¼ SaturateToSignedByte(DEST(39..32) û SRC(39..32));"
  1107. "DEST(47..40) ¼ SaturateToSignedByte(DEST(47..40) û SRC(47..40));"
  1108. "DEST(55..48) ¼ SaturateToSignedByte(DEST(55..48) û SRC(55..48));"
  1109. "DEST(63..56) ¼ SaturateToSignedByte(DEST(63..56) û SRC(63..56));"
  1110. "ELSE (* instruction is PSUBSW *)"
  1111. "DEST(15..0) ¼ SaturateToSignedWord(DEST(15..0) û SRC(15..0));"
  1112. "DEST(31..16) ¼ SaturateToSignedWord(DEST(31..16) û SRC(31..16));"
  1113. "DEST(47..32) ¼ SaturateToSignedWord(DEST(47..32) û SRC(47..32));"
  1114. "DEST(63..48) ¼ SaturateToSignedWord(DEST(63..48) û SRC(63..48));"
  1115. "FI;"
  1116. [3]
  1117. "None."
  1118. [4]
  1119. "Protected Mode Exceptions"
  1120. ""
  1121. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  1122. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1123. "#UD If EM in CR0 is set."
  1124. "#NM If TS in CR0 is set."
  1125. "#MF If there is a pending FPU exception."
  1126. "#PF(fault-code) If a page fault occurs."
  1127. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1128. ""
  1129. "Real-Address Mode Exceptions"
  1130. ""
  1131. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1132. "#UD If EM in CR0 is set."
  1133. "#NM If TS in CR0 is set."
  1134. "#MF If there is a pending FPU exception."
  1135. ""
  1136. "Virtual-8086 Mode Exceptions"
  1137. ""
  1138. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1139. "#UD If EM in CR0 is set."
  1140. "#NM If TS in CR0 is set."
  1141. "#MF If there is a pending FPU exception."
  1142. "#PF(fault-code) If a page fault occurs."
  1143. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1144. [5]
  1145. "0F E8 /r PSUBSB mm, mm/m64 Subtract signed packed bytes in mm/m64 from signed packed bytes in mm and saturate."
  1146. "0F E9 /r PSUBSW mm, mm/m64 Subtract signed packed words in mm/m64 from signed packed words in mm and saturate."
  1147. [6]
  1148. </PSUBSB>
  1149. </PSUBSW>
  1150. <PSUBUSB>
  1151. <PSUBUSW>
  1152. [1]
  1153. "PSUBUSB/PSUBUSW: Packed Subtract Unsigned with Saturation"
  1154. ""
  1155. "Subtracts the individual unsigned data elements (bytes or words) of the source operand (second operand) from the individual unsigned data elements of the destination operand (first operand). If the result of an individual subtraction exceeds the range for the specified unsigned data type, the result is saturated. The destination operand musts be an MMX register; the source operand can be either an MMX register or a quadword memory location."
  1156. "The PSUBUSB instruction subtracts the unsigned bytes of the source operand from the unsigned bytes of the destination operand and stores the results to the destination operand. When an individual result is less than zero (a negative value), the saturated unsigned byte value of 00H is written to the destination operand."
  1157. "The PSUBUSW instruction subtracts the unsigned words of the source operand from the unsigned words of the destination operand and stores the results to the destination operand. When an individual result is less than zero (a negative value), the saturated unsigned word value of 0000H is written to the destination operand."
  1158. [2]
  1159. "IF instruction is PSUBUSB"
  1160. "THEN"
  1161. "DEST(7..0) ¼ SaturateToUnsignedByte (DEST(7..0 û SRC (7..0) );"
  1162. "DEST(15..8) ¼ SaturateToUnsignedByte ( DEST(15..8) û SRC(15..8) );"
  1163. "DEST(23..16) ¼ SaturateToUnsignedByte (DEST(23..16) û SRC(23..16) );"
  1164. "DEST(31..24) ¼ SaturateToUnsignedByte (DEST(31..24) û SRC(31..24) );"
  1165. "DEST(39..32) ¼ SaturateToUnsignedByte (DEST(39..32) û SRC(39..32) );"
  1166. "DEST(47..40) ¼ SaturateToUnsignedByte (DEST(47..40) û SRC(47..40) );"
  1167. "DEST(55..48) ¼ SaturateToUnsignedByte (DEST(55..48) û SRC(55..48) );"
  1168. "DEST(63..56) ¼ SaturateToUnsignedByte (DEST(63..56) û SRC(63..56) );"
  1169. "ELSE { (* instruction is PSUBUSW *)"
  1170. "DEST(15..0) ¼ SaturateToUnsignedWord (DEST(15..0) û SRC(15..0) );"
  1171. "DEST(31..16) ¼ SaturateToUnsignedWord (DEST(31..16) û SRC(31..16) );"
  1172. "DEST(47..32) ¼ SaturateToUnsignedWord (DEST(47..32) û SRC(47..32) );"
  1173. "DEST(63..48) ¼ SaturateToUnsignedWord (DEST(63..48) û SRC(63..48) );"
  1174. "FI;"
  1175. [3]
  1176. "None."
  1177. [4]
  1178. "Protected Mode Exceptions"
  1179. ""
  1180. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  1181. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1182. "#UD If EM in CR0 is set."
  1183. "#NM If TS in CR0 is set."
  1184. "#MF If there is a pending FPU exception."
  1185. "#PF(fault-code) If a page fault occurs."
  1186. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1187. ""
  1188. "Real-Address Mode Exceptions"
  1189. ""
  1190. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1191. "#UD If EM in CR0 is set."
  1192. "#NM If TS in CR0 is set."
  1193. "#MF If there is a pending FPU exception."
  1194. ""
  1195. "Virtual-8086 Mode Exceptions"
  1196. ""
  1197. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1198. "#UD If EM in CR0 is set."
  1199. "#NM If TS in CR0 is set."
  1200. "#MF If there is a pending FPU exception."
  1201. "#PF(fault-code) If a page fault occurs."
  1202. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1203. [5]
  1204. "0F D8 /r PSUBUSB mm, mm/m64 Subtract unsigned packed bytes in mm/m64 from unsigned packed bytes in mm and saturate."
  1205. "0F D9 /r PSUBUSW mm, mm/m64 Subtract unsigned packed words in mm/m64 from unsigned packed words in mm and saturate."
  1206. [6]
  1207. </PSUBUSB>
  1208. </PSUBUSW>
  1209. <PUNPCKHBW>
  1210. <PUNPCKHDQ>
  1211. <PUNPCKHWD>
  1212. [1]
  1213. "PUNPCKHBW/PUNPCKHWD/PUNPCKHDQ: Unpack High Packed Data"
  1214. ""
  1215. "Unpacks and interleaves the high-order data elements (bytes, words, or doublewords) of the destination operand (first operand) and source operand (second operand) into the destination operand. The low-order data elements are ignored. The destination operand must be an MMX register; the source operand may be either an MMX register or a 64-bit memory location. When the source data comes from a memory operand, the full 64-bit operand is accessed from memory, but the instruction uses only the high-order 32 bits."
  1216. "The PUNPCKHBW instruction interleaves the four high-order bytes of the source operand and the four high-order bytes of the destination operand and writes them to the destination operand."
  1217. "The PUNPCKHWD instruction interleaves the two high-order words of the source operand and the two high-order words of the destination operand and writes them to the destination operand."
  1218. "The PUNPCKHDQ instruction interleaves the high-order doubleword of the source operand and the high-order doubleword of the destination operand and writes them to the destination operand."
  1219. "If the source operand is all zeros, the result (stored in the destination operand) contains zero extensions of the high-order data elements from the original value in the destination operand. With the PUNPCKHBW instruction the high-order bytes are zero extended (that is, unpacked into unsigned words), and with the PUNPCKHWD instruction, the high-order words are zero extended (unpacked into unsigned doublewords)."
  1220. [2]
  1221. "IF instruction is PUNPCKHBW"
  1222. "THEN"
  1223. "DEST(7..0) ¼ DEST(39..32);"
  1224. "DEST(15..8) ¼ SRC(39..32);"
  1225. "DEST(23..16) ¼ DEST(47..40);"
  1226. "DEST(31..24) ¼ SRC(47..40);"
  1227. "DEST(39..32) ¼ DEST(55..48);"
  1228. "DEST(47..40) ¼ SRC(55..48);"
  1229. "DEST(55..48) ¼ DEST(63..56);"
  1230. "DEST(63..56) ¼ SRC(63..56);"
  1231. "ELSE IF instruction is PUNPCKHW"
  1232. "THEN"
  1233. "DEST(15..0) ¼ DEST(47..32);"
  1234. "DEST(31..16) ¼ SRC(47..32);"
  1235. "DEST(47..32) ¼ DEST(63..48);"
  1236. "DEST(63..48) ¼ SRC(63..48);"
  1237. "ELSE (* instruction is PUNPCKHDQ *)"
  1238. "DEST(31..0) ¼ DEST(63..32)"
  1239. "DEST(63..32) ¼ SRC(63..32);"
  1240. "FI;"
  1241. [3]
  1242. "None."
  1243. [4]
  1244. "Protected Mode Exceptions"
  1245. ""
  1246. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  1247. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1248. "#UD If EM in CR0 is set."
  1249. "#NM If TS in CR0 is set."
  1250. "#MF If there is a pending FPU exception."
  1251. "#PF(fault-code) If a page fault occurs."
  1252. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1253. ""
  1254. "Real-Address Mode Exceptions"
  1255. ""
  1256. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1257. "#UD If EM in CR0 is set."
  1258. "#NM If TS in CR0 is set."
  1259. "#MF If there is a pending FPU exception."
  1260. ""
  1261. "Virtual-8086 Mode Exceptions"
  1262. ""
  1263. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1264. "#UD If EM in CR0 is set."
  1265. "#NM If TS in CR0 is set."
  1266. "#MF If there is a pending FPU exception."
  1267. "#PF(fault-code) If a page fault occurs."
  1268. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1269. [5]
  1270. "0F 68 /r PUNPCKHBW mm, mm/m64 Interleave high-order bytes from mm and mm/m64 into mm."
  1271. "0F 69 /r PUNPCKHWD mm, mm/m64 Interleave high-order words from mm and mm/m64 into mm."
  1272. "0F 6A /r PUNPCKHDQ mm, mm/m64 Interleave high-order doublewords from mm and mm/m64 into mm."
  1273. [6]
  1274. </PUNPCKHBW>
  1275. </PUNPCKHDQ>
  1276. </PUNPCKHWD>
  1277. <PUNPCKLBW>
  1278. <PUNPCKLDQ>
  1279. <PUNPCKLWD>
  1280. [1]
  1281. "PUNPCKLBW/PUNPCKLWD/PUNPCKLDQ: Unpack Low Packed Data"
  1282. ""
  1283. "Unpacks and interleaves the low-order data elements (bytes, words, or doublewords) of the destination and source operands into the destination operand. The destination operand must be an MMX register; the source operand may be either an MMX register or a memory location. When source data comes from an MMX register, the upper 32 bits of the register are ignored. When the source data comes from a memory, only 32-bits are accessed from memory."
  1284. "The PUNPCKLBW instruction interleaves the four low-order bytes of the source operand and the four low-order bytes of the destination operand and writes them to the destination operand."
  1285. "The PUNPCKLWD instruction interleaves the two low-order words of the source operand and the two low-order words of the destination operand and writes them to the destination operand."
  1286. "The PUNPCKLDQ instruction interleaves the low-order doubleword of the source operand and the low-order doubleword of the destination operand and writes them to the destination operand."
  1287. "If the source operand is all zeros, the result (stored in the destination operand) contains zero extensions of the high-order data elements from the original value in the destination operand. With the PUNPCKLBW instruction the low-order bytes are zero extended (that is, unpacked into unsigned words), and with the PUNPCKLWD instruction, the low-order words are zero extended (unpacked into unsigned doublewords)."
  1288. [2]
  1289. "IF instruction is PUNPCKLBW"
  1290. "THEN"
  1291. "DEST(63..56) ¼ SRC(31..24);"
  1292. "DEST(55..48) ¼ DEST(31..24);"
  1293. "DEST(47..40) ¼ SRC(23..16);"
  1294. "DEST(39..32) ¼ DEST(23..16);"
  1295. "DEST(31..24) ¼ SRC(15..8);"
  1296. "DEST(23..16) ¼ DEST(15..8);"
  1297. "DEST(15..8) ¼ SRC(7..0);"
  1298. "DEST(7..0) ¼ DEST(7..0);"
  1299. "ELSE IF instruction is PUNPCKLWD"
  1300. "THEN"
  1301. "DEST(63..48) ¼ SRC(31..16);"
  1302. "DEST(47..32) ¼ DEST(31..16);"
  1303. "DEST(31..16) ¼ SRC(15..0);"
  1304. "DEST(15..0) ¼ DEST(15..0);"
  1305. "ELSE (* instruction is PUNPCKLDQ *)"
  1306. "DEST(63..32) ¼ SRC(31..0);"
  1307. "DEST(31..0) ¼ DEST(31..0);"
  1308. "FI;"
  1309. [3]
  1310. "None."
  1311. [4]
  1312. "Protected Mode Exceptions"
  1313. ""
  1314. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  1315. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1316. "#UD If EM in CR0 is set."
  1317. "#NM If TS in CR0 is set."
  1318. "#MF If there is a pending FPU exception."
  1319. "#PF(fault-code) If a page fault occurs."
  1320. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1321. ""
  1322. "Real-Address Mode Exceptions"
  1323. ""
  1324. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1325. "#UD If EM in CR0 is set."
  1326. "#NM If TS in CR0 is set."
  1327. "#MF If there is a pending FPU exception."
  1328. ""
  1329. "Virtual-8086 Mode Exceptions"
  1330. ""
  1331. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1332. "#UD If EM in CR0 is set."
  1333. "#NM If TS in CR0 is set."
  1334. "#MF If there is a pending FPU exception."
  1335. "#PF(fault-code) If a page fault occurs."
  1336. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1337. [5]
  1338. "0F 60 /r PUNPCKLBW mm, mm/m32 Interleave low-order bytes from mm and mm/m64 into mm."
  1339. "0F 61 /r PUNPCKLWD mm, mm/m32 Interleave low-order words from mm and mm/m64 into mm."
  1340. "0F 62 /r PUNPCKLDQ mm, mm/m32 Interleave low-order doublewords from mm and mm/m64 into mm."
  1341. [6]
  1342. </PUNPCKLBW>
  1343. </PUNPCKLDQ>
  1344. </PUNPCKLWD>
  1345. <PUSH>
  1346. [1]
  1347. "PUSH: Push Word or Doubleword Onto the Stack"
  1348. ""
  1349. "Decrements the stack pointer and then stores the source operand on the top of the stack. The address-size attribute of the stack segment determines the stack pointer size (16 bits or 32 bits), and the operand-size attribute of the current code segment determines the amount the stack pointer is decremented (2 bytes or 4 bytes). For example, if these address- and operand-size attributes are 32, the 32-bit ESP register (stack pointer) is decremented by 4 and, if they are 16, the 16-bit SP register is decremented by 2.(The B flag in the stack segmentÆs segment descriptor determines the stackÆs address-size attribute, and the D flag in the current code segmentÆs segment descriptor, along with prefixes, determines the operand-size attribute and also the address-size attribute of the source operand.) Pushing a 16-bit operand when the stack address-size attribute is 32 can result in a misaligned the stack pointer (that is, the stack pointer is not aligned on a doubleword boundary)."
  1350. "The PUSH ESP instruction pushes the value of the ESP register as it existed before the instruction was executed. Thus, if a PUSH instruction uses a memory operand in which the ESP register is used as a base register for computing the operand address, the effective address of the operand is computed before the ESP register is decremented. In the real-address mode, if the ESP or SP register is 1 when the PUSH instruction is executed, the processor shuts down due to a lack of stack space. No exception is generated to indicate this condition."
  1351. ""
  1352. "Intel Architecture Compatibility"
  1353. ""
  1354. "For Intel Architecture processors from the Intel 286 on, the PUSH ESP instruction pushes the value of the ESP register as it existed before the instruction was executed. (This is also true in the real-address and virtual-8086 modes.) For the Intel 8086 processor, the PUSH SP instruction pushes the new value of the SP register (that is the value after it has been decremented by 2)."
  1355. [2]
  1356. "IF StackAddrSize = 32"
  1357. "THEN"
  1358. "IF OperandSize = 32"
  1359. "THEN"
  1360. "ESP ¼ ESP - 4;"
  1361. "SS:ESP ¼ SRC; (* push doubleword *)"
  1362. "ELSE (* OperandSize = 16*)"
  1363. "ESP ¼ ESP - 2;"
  1364. "SS:ESP ¼ SRC; (* push word *)"
  1365. "FI;"
  1366. "ELSE (* StackAddrSize = 16*)"
  1367. "IF OperandSize = 16"
  1368. "THEN"
  1369. "SP ¼ SP - 2;"
  1370. "SS:SP ¼ SRC; (* push word *)"
  1371. "ELSE (* OperandSize = 32*)"
  1372. "SP ¼ SP - 4;"
  1373. "SS:SP ¼ SRC; (* push doubleword *)"
  1374. "FI;"
  1375. "FI;"
  1376. [3]
  1377. "None."
  1378. [4]
  1379. "Protected Mode Exceptions"
  1380. ""
  1381. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register is used to access memory and it contains a null segment selector."
  1382. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1383. "#PF(fault-code) If a page fault occurs."
  1384. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1385. ""
  1386. "Real-Address Mode Exceptions"
  1387. ""
  1388. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  1389. "#SS If a memory operand effective address is outside the SS segment limit. If the new value of the SP or ESP register is outside the stack segment limit."
  1390. ""
  1391. "Virtual-8086 Mode Exceptions"
  1392. ""
  1393. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  1394. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1395. "#PF(fault-code) If a page fault occurs."
  1396. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1397. [5]
  1398. "FF /6 PUSH r/m16 Push r/m16"
  1399. "FF /6 PUSH r/m32 Push r/m32"
  1400. "50+ rw PUSH r16 Push r16"
  1401. "50+ rd PUSH r32 Push r32"
  1402. "6A PUSH imm8 Push imm8"
  1403. "68 PUSH imm16 Push imm16"
  1404. "68 PUSH imm32 Push imm32"
  1405. "0E PUSH CS Push CS"
  1406. "16 PUSH SS Push SS"
  1407. "1E PUSH DS Push DS"
  1408. "06 PUSH ES Push ES"
  1409. "0F A0 PUSH FS Push FS"
  1410. "0F A8 PUSH GS Push GS"
  1411. [6]
  1412. </PUSH>
  1413. <PUSHA>
  1414. <PUSHAD>
  1415. [1]
  1416. "PUSHA/PUSHAD: Push All General-Purpose Registers"
  1417. ""
  1418. "Pushes the contents of the general-purpose registers onto the stack. The registers are stored on the stack in the following order: EAX, ECX, EDX, EBX, EBP, ESP (original value), EBP, ESI, and EDI (if the current operand-size attribute is 32) and AX, CX, DX, BX, SP (original value), BP, SI, and DI (if the operand-size attribute is 16). (These instructions perform the reverse operation of the POPA/POPAD instructions.) The value pushed for the ESP or SP register is its value before prior to pushing the first register (see the ôOperationö section)."
  1419. "The PUSHA (push all) and PUSHAD (push all double) mnemonics reference the same opcode. The PUSHA instruction is intended for use when the operand-size attribute is 16 and the PUSHAD instruction for when the operand-size attribute is 32. Some assemblers may force the operand size to 16 when PUSHA is used and to 32 when PUSHAD is used. Others may treat these mnemonics as synonyms (PUSHA/PUSHAD) and use the current setting of the operand-size attribute to determine the size of values to be pushed from the stack, regardless of the mnemonic used."
  1420. "In the real-address mode, if the ESP or SP register is 1, 3, or 5 when the PUSHA/PUSHAD instruction is executed, the processor shuts down due to a lack of stack space. No exception is generated to indicate this condition."
  1421. [2]
  1422. "IF OperandSize = 32 (* PUSHAD instruction *)"
  1423. "THEN"
  1424. "Temp ¼ (ESP);"
  1425. "Push(EAX);"
  1426. "Push(ECX);"
  1427. "Push(EDX);"
  1428. "Push(EBX);"
  1429. "Push(Temp);"
  1430. "Push(EBP);"
  1431. "Push(ESI);"
  1432. "Push(EDI);"
  1433. "ELSE (* OperandSize = 16, PUSHA instruction *)"
  1434. "Temp ¼ (SP);"
  1435. "Push(AX);"
  1436. "Push(CX);"
  1437. "Push(DX);"
  1438. "Push(BX);"
  1439. "Push(Temp);"
  1440. "Push(BP);"
  1441. "Push(SI);"
  1442. "Push(DI);"
  1443. "FI;"
  1444. [3]
  1445. "None."
  1446. [4]
  1447. "Protected Mode Exceptions"
  1448. ""
  1449. "#SS(0) If the starting or ending stack address is outside the stack segment limit."
  1450. "#PF(fault-code) If a page fault occurs."
  1451. "#AC(0) If an unaligned memory reference is made while the current privilege level is 3 and alignment checking is enabled."
  1452. ""
  1453. "Real-Address Mode Exceptions"
  1454. ""
  1455. "#GP If the ESP or SP register contains 7, 9, 11, 13, or 15."
  1456. ""
  1457. "Virtual-8086 Mode Exceptions"
  1458. ""
  1459. "#GP(0) If the ESP or SP register contains 7, 9, 11, 13, or 15."
  1460. "#PF(fault-code) If a page fault occurs."
  1461. "#AC(0) If an unaligned memory reference is made while alignment checking is enabled."
  1462. [5]
  1463. "60 PUSHA Push AX, CX, DX, BX, original SP, BP, SI, and DI"
  1464. "60 PUSHAD Push EAX, ECX, EDX, EBX, original ESP, EBP, ESI, and EDI"
  1465. [6]
  1466. </PUSHA>
  1467. </PUSHAD>
  1468. <PUSHF>
  1469. <PUSHFD>
  1470. [1]
  1471. "PUSHF/PUSHFD: Push EFLAGS Register onto the Stack"
  1472. ""
  1473. "Decrements the stack pointer by 4 (if the current operand-size attribute is 32) and pushes the entire contents of the EFLAGS register onto the stack, or decrements the stack pointer by 2 (if the operand-size attribute is 16) and pushes the lower 16 bits of the EFLAGS register (that is, the FLAGS register) onto the stack. (These instructions reverse the operation of the POPF/POPFD instructions.) When copying the entire EFLAGS register to the stack, the VM and RF flags (bits 16 and 17) are not copied; instead, the values for these flags are cleared in the EFLAGS image stored on the stack."
  1474. "The PUSHF (push flags) and PUSHFD (push flags double) mnemonics reference the same opcode. The PUSHF instruction is intended for use when the operand-size attribute is 16 and the PUSHFD instruction for when the operand-size attribute is 32. Some assemblers may force the operand size to 16 when PUSHF is used and to 32 when PUSHFD is used. Others may treat these mnemonics as synonyms (PUSHF/PUSHFD) and use the current setting of the operand-size attribute to determine the size of values to be pushed from the stack, regardless of the mnemonic used."
  1475. "When in virtual-8086 mode and the I/O privilege level (IOPL) is less than 3, the PUSHF/PUSHFD instruction causes a general protection exception (#GP). In the real-address mode, if the ESP or SP register is 1, 3, or 5 when the PUSHA/PUSHAD instruction is executed, the processor shuts down due to a lack of stack space. No exception is generated to indicate this condition."
  1476. [2]
  1477. "IF (PE=0) OR (PE=1 AND ((VM=0) OR (VM=1 AND IOPL=3)))"
  1478. "(* Real-Address Mode, Protected mode, or Virtual-8086 mode with IOPL equal to 3 *)"
  1479. "THEN"
  1480. "IF OperandSize = 32"
  1481. "THEN"
  1482. "push(EFLAGS AND 00FCFFFFH);"
  1483. "(* VM and RF EFLAG bits are cleared in image stored on the stack*)"
  1484. "ELSE"
  1485. "push(EFLAGS); (* Lower 16 bits only *)"
  1486. "FI;"
  1487. "ELSE (* In Virtual-8086 Mode with IOPL less than 0 *)"
  1488. "#GP(0); (* Trap to virtual-8086 monitor *)"
  1489. "FI;"
  1490. [3]
  1491. "None."
  1492. [4]
  1493. "Protected Mode Exceptions"
  1494. ""
  1495. "#SS(0) If the new value of the ESP register is outside the stack segment boundary."
  1496. "#PF(fault-code) If a page fault occurs."
  1497. "#AC(0) If an unaligned memory reference is made while the current privilege level is 3 and alignment checking is enabled."
  1498. ""
  1499. "Real-Address Mode Exceptions"
  1500. ""
  1501. "None."
  1502. ""
  1503. "Virtual-8086 Mode Exceptions"
  1504. ""
  1505. "#GP(0) If the I/O privilege level is less than 3."
  1506. "#PF(fault-code) If a page fault occurs."
  1507. "#AC(0) If an unaligned memory reference is made while alignment checking is enabled."
  1508. [5]
  1509. "9C PUSHF Push lower 16 bits of EFLAGS"
  1510. "9C PUSHFD Push EFLAGS"
  1511. [6]
  1512. </PUSHF>
  1513. </PUSHFD>
  1514. <PXOR>
  1515. [1]
  1516. "PXOR: Logical Exclusive OR"
  1517. ""
  1518. "Performs a bitwise logical exclusive-OR (XOR) operation on the quadword source (second) and destination (first) operands and stores the result in the destination operand location. The source operand can be an MMX register or a quadword memory location; the destination operand must be an MMX register. Each bit of the result is 1 if the corresponding bits of the two operands are different; each bit is 0 if the corresponding bits of the operands are the same."
  1519. [2]
  1520. "DEST ¼ DEST XOR SRC;"
  1521. [3]
  1522. "None."
  1523. [4]
  1524. "Protected Mode Exceptions"
  1525. ""
  1526. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  1527. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  1528. "#UD If EM in CR0 is set."
  1529. "#NM If TS in CR0 is set."
  1530. "#MF If there is a pending FPU exception."
  1531. "#PF(fault-code) If a page fault occurs."
  1532. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  1533. ""
  1534. "Real-Address Mode Exceptions"
  1535. ""
  1536. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1537. "#UD If EM in CR0 is set."
  1538. "#NM If TS in CR0 is set."
  1539. "#MF If there is a pending FPU exception."
  1540. ""
  1541. "Virtual-8086 Mode Exceptions"
  1542. ""
  1543. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  1544. "#UD If EM in CR0 is set."
  1545. "#NM If TS in CR0 is set."
  1546. "#MF If there is a pending FPU exception."
  1547. "#PF(fault-code) If a page fault occurs."
  1548. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  1549. [5]
  1550. "0F EF /r PXOR mm, mm/m64 XOR quadword from mm/m64 to quadword in mm."
  1551. [6]
  1552. </PXOR>