home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Software / TemaCD / Hackman / _SETUP.1 / modules.dat < prev    next >
Text File  |  1998-10-04  |  47KB  |  853 lines

  1. <SAHF>
  2. [1]
  3. "SAHF: Store AH into Flags"
  4. ""
  5. "Loads the SF, ZF, AF, PF, and CF flags of the EFLAGS register with values from the corresponding bits in the AH register (bits 7, 6, 4, 2, and 0, respectively). Bits 1, 3, and 5 of register AH are ignored; the corresponding reserved bits (1, 3, and 5) in the EFLAGS register remain as shown in the ôOperationö section."
  6. [2]
  7. "EFLAGS(SF:ZF:0:AF:0:PF:1:CF) ¼ AH;"
  8. [3]
  9. "The SF, ZF, AF, PF, and CF flags are loaded with values from the AH register. Bits 1, 3, and 5 of the EFLAGS register are unaffected, with the values remaining 1, 0, and 0, respectively."
  10. [4]
  11. "(All Operating Modes)"
  12. "None."
  13. [5]
  14. "9E SAHF 2 Loads SF, ZF, AF, PF, and CF from AH into EFLAGS register"
  15. [6]
  16. </SAHF>
  17. <SAL>
  18. <SAR>
  19. <SHL>
  20. <SHR>
  21. [1]
  22. "SAL/SAR/SHL/SHR: Shift"
  23. ""
  24. "Shifts the bits in the first operand (destination operand) to the left or right by the number of bits specified in the second operand (count operand). Bits shifted beyond the destination operand boundary are first shifted into the CF flag, then discarded. At the end of the shift operation, the CF flag contains the last bit shifted out of the destination operand. The destination operand can be a register or a memory location. The count operand can be an immediate value or register CL. The count is masked to 5 bits, which limits the count range to 0 to 31. A special opcode encoding is provided for a count of 1."
  25. "The shift arithmetic left (SAL) and shift logical left (SHL) instructions perform the same operation; they shift the bits in the destination operand to the left (toward more significant bit locations). For each shift count, the most significant bit of the destination operand is shifted into the CF flag, and the least significant bit is cleared."
  26. "The shift arithmetic right (SAR) and shift logical right (SHR) instructions shift the bits of the destination operand to the right (toward less significant bit locations). For each shift count, the least significant bit of the destination operand is shifted into the CF flag, and the most significant bit is either set or cleared depending on the instruction type. The SHR instruction clears the most significant bit; the SAR instruction sets or clears the most significant bit to correspond to the sign (most significant bit) of the original value in the destination operand. In effect, the SAR instruction fills the empty bit positionÆs shifted value with the sign of the unshifted value."
  27. "The SAR and SHR instructions can be used to perform signed or unsigned division, respectively, of the destination operand by powers of 2. For example, using the SAR instruction to shift a signed integer 1 bit to the right divides the value by 2. Using the SAR instruction to perform a division operation does not produce the same result as the IDIV instruction. The quotient from the IDIV instruction is rounded toward zero, whereas the ôquotientö of the SAR instruction is rounded toward negative infinity. This difference is apparent only for negative numbers. For example, when the IDIV instruction is used to divide -9 by 4, the result is -2 with a remainder of -1. If the SAR instruction is used to shift -9 right by two bits, the result is -3 and the ôremainderö is +3; however, the SAR instruction stores only the most significant bit of the remainder (in the CF flag)."
  28. "The OF flag is affected only on 1-bit shifts. For left shifts, the OF flag is cleared to 0 if the most-significant bit of the result is the same as the CF flag (that is, the top two bits of the original operand were the same); otherwise, it is set to 1. For the SAR instruction, the OF flag is cleared for all 1-bit shifts. For the SHR instruction, the OF flag is set to the most-significant bit of the original operand."
  29. ""
  30. "Intel Architecture Compatibility"
  31. ""
  32. "The 8086 does not mask the shift count. However, all other Intel Architecture processors (starting with the Intel 286 processor) do mask the shift count to 5 bits, resulting in a maximum count of 31. This masking is done in all operating modes (including the virtual-8086 mode) to reduce the maximum execution time of the instructions."
  33. [2]
  34. "tempCOUNT ¼ (COUNT AND 1FH);"
  35. "tempDEST ¼ DEST;"
  36. "WHILE (tempCOUNT ╣ 0)"
  37. "DO"
  38. "IF instruction is SAL or SHL"
  39. "THEN"
  40. "CF ¼ MSB(DEST);"
  41. "ELSE (* instruction is SAR or SHR *)"
  42. "CF ¼ LSB(DEST);"
  43. "FI;"
  44. "IF instruction is SAL or SHL"
  45. "THEN"
  46. "DEST ¼ DEST * 2;"
  47. "ELSE"
  48. "IF instruction is SAR"
  49. "THEN"
  50. "DEST ¼ DEST / 2 (*Signed divide, rounding toward negative infinity*);"
  51. "ELSE (* instruction is SHR *)"
  52. "DEST ¼ DEST / 2 ; (* Unsigned divide *);"
  53. "FI;"
  54. "FI;"
  55. "tempCOUNT ¼ tempCOUNT û 1;"
  56. "OD;"
  57. "(* Determine overflow for the various instructions *)"
  58. "IF COUNT = 1"
  59. "THEN"
  60. "IF instruction is SAL or SHL"
  61. "THEN"
  62. "OF ¼ MSB(DEST) XOR CF;"
  63. "ELSE"
  64. "IF instruction is SAR"
  65. "THEN"
  66. "OF ¼ 0;"
  67. "ELSE (* instruction is SHR *)"
  68. "OF ¼ MSB(tempDEST);"
  69. "FI;"
  70. "FI;"
  71. "ELSE IF COUNT = 0"
  72. "THEN"
  73. "All flags remain unchanged;"
  74. "ELSE (* COUNT neither 1 or 0 *)"
  75. "OF ¼ undefined;"
  76. "FI;"
  77. "FI;"
  78. [3]
  79. "The CF flag contains the value of the last bit shifted out of the destination operand; it is undefined for SHL and SHR instructions where the count is greater than or equal to the size (in bits) of the destination operand. The OF flag is affected only for 1-bit shifts (see ôDescriptionö); otherwise, it is undefined. The SF, ZF, and PF flags are set according to the result. If the count is 0, the flags are not affected. For a non-zero count, the AF flag is undefined."
  80. [4]
  81. "Protected Mode Exceptions"
  82. ""
  83. "#GP(0) If the destination is located 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 contains a null segment selector."
  84. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  85. "#PF(fault-code) If a page fault occurs."
  86. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  87. ""
  88. "Real-Address Mode Exceptions"
  89. ""
  90. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  91. "#SS If a memory operand effective address is outside the SS segment limit."
  92. ""
  93. "Virtual-8086 Mode Exceptions"
  94. ""
  95. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  96. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  97. "#PF(fault-code) If a page fault occurs."
  98. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  99. [5]
  100. "NOTE:"
  101. "* Not the same form of division as IDIV; rounding is toward negative infinity."
  102. ""
  103. "D0 /4 SAL r/m8,1 Multiply r/m8 by 2, once"
  104. "D2 /4 SAL r/m8,CL Multiply r/m8 by 2, CL times"
  105. "C0 /4 ib SAL r/m8,imm8 Multiply r/m8 by 2, imm8 times"
  106. "D1 /4 SAL r/m16,1 Multiply r/m16 by 2, once"
  107. "D3 /4 SAL r/m16,CL Multiply r/m16 by 2, CL times"
  108. "C1 /4 ib SAL r/m16,imm8 Multiply r/m16 by 2, imm8 times"
  109. "D1 /4 SAL r/m32,1 Multiply r/m32 by 2, once"
  110. "D3 /4 SAL r/m32,CL Multiply r/m32 by 2, CL times"
  111. "C1 /4 ib SAL r/m32,imm8 Multiply r/m32 by 2, imm8 times"
  112. "D0 /7 SAR r/m8,1 Signed divide* r/m8 by 2, once"
  113. "D2 /7 SAR r/m8,CL Signed divide* r/m8 by 2, CL times"
  114. "C0 /7 ib SAR r/m8,imm8 Signed divide* r/m8 by 2, imm8 times"
  115. "D1 /7 SAR r/m16,1 Signed divide* r/m16 by 2, once"
  116. "D3 /7 SAR r/m16,CL Signed divide* r/m16 by 2, CL times"
  117. "C1 /7 ib SAR r/m16,imm8 Signed divide* r/m16 by 2, imm8 times"
  118. "D1 /7 SAR r/m32,1 Signed divide* r/m32 by 2, once"
  119. "D3 /7 SAR r/m32,CL Signed divide* r/m32 by 2, CL times"
  120. "C1 /7 ib SAR r/m32,imm8 Signed divide* r/m32 by 2, imm8 times"
  121. "D0 /4 SHL r/m8,1 Multiply r/m8 by 2, once"
  122. "D2 /4 SHL r/m8,CL Multiply r/m8 by 2, CL times"
  123. "C0 /4 ib SHL r/m8,imm8 Multiply r/m8 by 2, imm8 times"
  124. "D1 /4 SHL r/m16,1 Multiply r/m16 by 2, once"
  125. "D3 /4 SHL r/m16,CL Multiply r/m16 by 2, CL times"
  126. "C1 /4 ib SHL r/m16,imm8 Multiply r/m16 by 2, imm8 times"
  127. "D1 /4 SHL r/m32,1 Multiply r/m32 by 2, once"
  128. "D3 /4 SHL r/m32,CL Multiply r/m32 by 2, CL times"
  129. "C1 /4 ib SHL r/m32,imm8 Multiply r/m32 by 2, imm8 times"
  130. "D0 /5 SHR r/m8,1 Unsigned divide r/m8 by 2, once"
  131. "D2 /5 SHR r/m8,CL Unsigned divide r/m8 by 2, CL times"
  132. "C0 /5 ib SHR r/m8,imm8 Unsigned divide r/m8 by 2, imm8 times"
  133. "D1 /5 SHR r/m16,1 Unsigned divide r/m16 by 2, once"
  134. "D3 /5 SHR r/m16,CL Unsigned divide r/m16 by 2, CL times"
  135. "C1 /5 ib SHR r/m16,imm8 Unsigned divide r/m16 by 2, imm8 times"
  136. "D1 /5 SHR r/m32,1 Unsigned divide r/m32 by 2, once"
  137. "D3 /5 SHR r/m32,CL Unsigned divide r/m32 by 2, CL times"
  138. "C1 /5 ib SHR r/m32,imm8 Unsigned divide r/m32 by 2, imm8 times"
  139. [6]
  140. </SAL>
  141. </SAR>
  142. </SHL>
  143. </SHR>
  144. <SBB>
  145. [1]
  146. "SBB: Integer Subtraction with Borrow"
  147. ""
  148. "Adds the source operand (second operand) and the carry (CF) flag, and subtracts the result from the destination operand (first operand). The result of the subtraction is stored in the destination operand. The destination operand can be a register or a memory location; the source operand can be an immediate, a register, or a memory location. (However, two memory operands cannot be used in one instruction.) The state of the CF flag represents a borrow from a previous subtraction. When an immediate value is used as an operand, it is sign-extended to the length of the destination operand format."
  149. "The SBB instruction does not distinguish between signed or unsigned operands. Instead, the processor evaluates the result for both data types and sets the OF and CF flags to indicate a borrow in the signed or unsigned result, respectively. The SF flag indicates the sign of the signed result. The SBB instruction is usually executed as part of a multibyte or multiword subtraction in which a SUB instruction is followed by a SBB instruction."
  150. [2]
  151. "DEST ¼ DEST û (SRC + CF);"
  152. [3]
  153. "The OF, SF, ZF, AF, PF, and CF flags are set according to the result."
  154. [4]
  155. "Protected Mode Exceptions"
  156. ""
  157. "#GP(0) If the destination is located 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 contains a null segment selector."
  158. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  159. "#PF(fault-code) If a page fault occurs."
  160. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  161. ""
  162. "Real-Address Mode Exceptions"
  163. ""
  164. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  165. "#SS If a memory operand effective address is outside the SS segment limit."
  166. ""
  167. "Virtual-8086 Mode Exceptions"
  168. ""
  169. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  170. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  171. "#PF(fault-code) If a page fault occurs."
  172. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  173. [5]
  174. "1C ib SBB AL, imm8 Subtract with borrow imm8 from AL"
  175. "1D iw SBB AX, imm16 Subtract with borrow imm16 from AX"
  176. "1D id SBB EAX, imm32 Subtract with borrow imm32 from EAX"
  177. "80 /3 ib SBB r/m8,imm8 Subtract with borrow imm8 from r/m8"
  178. "81 /3 iw SBB r/m16,imm16 Subtract with borrow imm16 from r/m16"
  179. "81 /3 id SBB r/m32,imm32 Subtract with borrow imm32 from r/m32"
  180. "83 /3 ib SBB r/m16,imm8 Subtract with borrow sign-extended imm8 from r/m16"
  181. "83 /3 ib SBB r/m32,imm8 Subtract with borrow sign-extended imm8 from r/m32"
  182. "18 / r SBB r/m8,r8 Subtract with borrow r8 from r/m8"
  183. "19 / r SBB r/m16,r16 Subtract with borrow r16 from r/m16"
  184. "19 / r SBB r/m32,r32 Subtract with borrow r32 from r/m32"
  185. "1A / r SBB r8,r/m8 Subtract with borrow r/m8 from r8"
  186. "1B / r SBB r16,r/m16 Subtract with borrow r/m16 from r16"
  187. "1B / r SBB r32,r/m32 Subtract with borrow r/m32 from r32"
  188. [6]
  189. </SBB>
  190. <SCAS>
  191. <SCASB>
  192. <SCASD>
  193. <SCASW>
  194. [1]
  195. "SCAS/SCASB/SCASW/SCASD: Scan String"
  196. ""
  197. "Compares the byte, word, or double word specified with the memory operand with the value in the AL, AX, or EAX register, and sets the status flags in the EFLAGS register according to the results. The memory operand address is read from either the ES:EDI or the ES:DI registers (depending on the address-size attribute of the instruction, 32 or 16, respectively). The ES segment cannot be overridden with a segment override prefix. At the assembly-code level, two forms of this instruction are allowed: the ôexplicit-operandsö form and the ôno-operandsö form. The explicit-operand form (specified with the SCAS mnemonic) allows the memory operand to be specified explicitly. Here, the memory operand should be a symbol that indicates the size and location of the operand value. The register operand is then automatically selected to match the size of the memory operand (the AL register for byte comparisons, AX for word comparisons, and EAX for doubleword comparisons). This explicit-operand form is provided to allow documentation; however, note that the documentation provided by this form can be misleading. That is, the memory operand symbol must specify the correct type (size) of the operand (byte, word, or doubleword), but it does not have to specify the correct location. The location is always specified by the ES:(E)DI registers, which must be loaded correctly before the compare string instruction is executed."
  198. "The no-operands form provides ôshort formsö of the byte, word, and doubleword versions of the SCAS instructions. Here also ES:(E)DI is assumed to be the memory operand and the AL, AX, or EAX register is assumed to be the register operand. The size of the two operands is selected with the mnemonic: SCASB (byte comparison), SCASW (word comparison), or SCASD (doubleword comparison)."
  199. "After the comparison, the (E)DI register is incremented or decremented automatically according to the setting of the DF flag in the EFLAGS register. (If the DF flag is 0, the (E)DI register is incremented; if the DF flag is 1, the (E)DI register is decremented.) The (E)DI register is incremented or decremented by 1 for byte operations, by 2 for word operations, or by 4 for double-word operations."
  200. "The SCAS, SCASB, SCASW, and SCASD instructions can be preceded by the REP prefix for block comparisons of ECX bytes, words, or doublewords. More often, however, these instructions will be used in a LOOP construct that takes some action based on the setting of the status flags before the next comparison is made."
  201. [2]
  202. "IF (byte cmparison)"
  203. "THEN"
  204. "temp ¼ AL - SRC;"
  205. "SetStatusFlags(temp);"
  206. "THEN IF DF = 0"
  207. "THEN (E)DI ¼ (E)DI + 1;"
  208. "ELSE (E)DI ¼ (E)DI û 1;"
  209. "FI;"
  210. "ELSE IF (word comparison)"
  211. "THEN"
  212. "temp ¼ AX - SRC;"
  213. "SetStatusFlags(temp)"
  214. "THEN IF DF = 0"
  215. "THEN (E)DI ¼ (E)DI + 2;"
  216. "ELSE (E)DI ¼ (E)DI û 2;"
  217. "FI;"
  218. "ELSE (* doubleword comparison *)"
  219. "temp ¼ EAX - SRC;"
  220. "SetStatusFlags(temp)"
  221. "THEN IF DF = 0"
  222. "THEN (E)DI ¼ (E)DI + 4;"
  223. "ELSE (E)DI ¼ (E)DI û 4;"
  224. "FI;"
  225. "FI;"
  226. "FI;"
  227. [3]
  228. "The OF, SF, ZF, AF, PF, and CF flags are set according to the temporary result of the comparison."
  229. [4]
  230. "Protected Mode Exceptions"
  231. ""
  232. "#GP(0) If a memory operand effective address is outside the limit of the ES segment. If the ES register contains a null segment selector. If an illegal memory operand effective address in the ES segment is given."
  233. "#PF(fault-code) If a page fault occurs."
  234. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  235. ""
  236. "Real-Address Mode Exceptions"
  237. ""
  238. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  239. "#SS If a memory operand effective address is outside the SS segment limit."
  240. ""
  241. "Virtual-8086 Mode Exceptions"
  242. ""
  243. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  244. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  245. "#PF(fault-code) If a page fault occurs."
  246. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  247. [5]
  248. "AE SCAS m8 Compare AL with byte at ES:(E)DI and set status flags"
  249. "AF SCAS m16 Compare AX with word at ES:(E)DI and set status flags"
  250. "AF SCAS m32 Compare EAX with doubleword at ES(E)DI and set status flags"
  251. "AE SCASB Compare AL with byte at ES:(E)DI and set status flags"
  252. "AF SCASW Compare AX with word at ES:(E)DI and set status flags"
  253. "AF SCASD Compare EAX with doubleword at ES:(E)DI and set status flags"
  254. [6]
  255. </SCAS>
  256. </SCASB>
  257. </SCASD>
  258. </SCASW>
  259. <SET>
  260. <SETA>
  261. <SETAE>
  262. <SETB>
  263. <SETBE>
  264. <SETC>
  265. <SETE>
  266. <SETG>
  267. <SETGE>
  268. <SETL>
  269. <SETLE>
  270. <SETNA>
  271. <SETNAE>
  272. <SETNB>
  273. <SETNBE>
  274. <SETNC>
  275. <SETNE>
  276. <SETNG>
  277. <SETNGE>
  278. <SETNL>
  279. <SETNLE>
  280. <SETNO>
  281. <SETNP>
  282. <SETNS>
  283. <SETNZ>
  284. <SETO>
  285. <SETP>
  286. <SETPE>
  287. <SETPO>
  288. <SETS>
  289. <SETZ>
  290. [1]
  291. "SET cc: Set Byte on Condition"
  292. ""
  293. "Set the destination operand to 0 or 1 depending on the settings of the status flags (CF, SF, OF, ZF, and PF) in the EFLAGS register. The destination operand points to a byte register or a byte in memory. The condition code suffix (cc) indicates the condition being tested for. The terms ôaboveö and ôbelowö are associated with the CF flag and refer to the relationship between two unsigned integer values. The terms ôgreaterö and ôlessö are associated with the SF and OF flags and refer to the relationship between two signed integer values."
  294. "Many of the SETcc instruction opcodes have alternate mnemonics. For example, the SETG (set byte if greater) and SETNLE (set if not less or equal) both have the same opcode and test for the same condition: ZF equals 0 and SF equals OF. These alternate mnemonics are provided to make code more intelligible. Some languages represent a logical one as an integer with all bits set. This representation can be obtained by choosing the logically opposite condition for the SETcc instruction, then decrementing the result. For example, to test for overflow, use the SETNO instruction, then decrement the result."
  295. [2]
  296. "IF condition"
  297. "THEN DEST ¼ 1"
  298. "ELSE DEST ¼ 0;"
  299. "FI;"
  300. [3]
  301. "None."
  302. [4]
  303. "Protected Mode Exceptions"
  304. ""
  305. "#GP(0) If the destination is located 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 contains a null segment selector."
  306. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  307. "#PF(fault-code) If a page fault occurs."
  308. ""
  309. "Real-Address Mode Exceptions"
  310. ""
  311. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  312. "#SS If a memory operand effective address is outside the SS segment limit."
  313. ""
  314. "Virtual-8086 Mode Exceptions"
  315. ""
  316. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  317. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  318. "#PF(fault-code) If a page fault occurs."
  319. [5]
  320. "0F 97 SETA r/m8 Set byte if above (CF=0 and ZF=0)"
  321. "0F 93 SETAE r/m8 Set byte if above or equal (CF=0)"
  322. "0F 92 SETB r/m8 Set byte if below (CF=1)"
  323. "0F 96 SETBE r/m8 Set byte if below or equal (CF=1 or ZF=1)"
  324. "0F 92 SETC r/m8 Set if carry (CF=1)"
  325. "0F 94 SETE r/m8 Set byte if equal (ZF=1)"
  326. "0F 9F SETG r/m8 Set byte if greater (ZF=0 and SF=OF)"
  327. "0F 9D SETGE r/m8 Set byte if greater or equal (SF=OF)"
  328. "0F 9C SETL r/m8 Set byte if less (SF<>OF)"
  329. "0F 9E SETLE r/m8 Set byte if less or equal (ZF=1 or SF<>OF)"
  330. "0F 96 SETNA r/m8 Set byte if not above (CF=1 or ZF=1)"
  331. "0F 92 SETNAE r/m8 Set byte if not above or equal (CF=1)"
  332. "0F 93 SETNB r/m8 Set byte if not below (CF=0)"
  333. "0F 97 SETNBE r/m8 Set byte if not below or equal (CF=0 and ZF=0)"
  334. "0F 93 SETNC r/m8 Set byte if not carry (CF=0)"
  335. "0F 95 SETNE r/m8 Set byte if not equal (ZF=0)"
  336. "0F 9E SETNG r/m8 Set byte if not greater (ZF=1 or SF<>OF)"
  337. "0F 9C SETNGE r/m8 Set if not greater or equal (SF<>OF)"
  338. "0F 9D SETNL r/m8 Set byte if not less (SF=OF)"
  339. "0F 9F SETNLE r/m8 Set byte if not less or equal (ZF=0 and SF=OF)"
  340. "0F 91 SETNO r/m8 Set byte if not overflow (OF=0)"
  341. "0F 9B SETNP r/m8 Set byte if not parity (PF=0)"
  342. "0F 99 SETNS r/m8 Set byte if not sign (SF=0)"
  343. "0F 95 SETNZ r/m8 Set byte if not zero (ZF=0)"
  344. "0F 90 SETO r/m8 Set byte if overflow (OF=1)"
  345. "0F 9A SETP r/m8 Set byte if parity (PF=1)"
  346. "0F 9A SETPE r/m8 Set byte if parity even (PF=1)"
  347. "0F 9B SETPO r/m8 Set byte if parity odd (PF=0)"
  348. "0F 98 SETS r/m8 Set byte if sign (SF=1)"
  349. "0F 94 SETZ r/m8 Set byte if zero (ZF=1)"
  350. [6]
  351. </SET>
  352. </SETA>
  353. </SETAE>
  354. </SETB>
  355. </SETBE>
  356. </SETC>
  357. </SETE>
  358. </SETG>
  359. </SETGE>
  360. </SETL>
  361. </SETLE>
  362. </SETNA>
  363. </SETNAE>
  364. </SETNB>
  365. </SETNBE>
  366. </SETNC>
  367. </SETNE>
  368. </SETNG>
  369. </SETNGE>
  370. </SETNL>
  371. </SETNLE>
  372. </SETNO>
  373. </SETNP>
  374. </SETNS>
  375. </SETNZ>
  376. </SETO>
  377. </SETP>
  378. </SETPE>
  379. </SETPO>
  380. </SETS>
  381. </SETZ>
  382. <SGDT>
  383. <SIDT>
  384. [1]
  385. "SGDT/SIDT: Store Global/Interrupt Descriptor Table Register"
  386. ""
  387. "Stores the contents of the global descriptor table register (GDTR) or the interrupt descriptor table register (IDTR) in the destination operand. The destination operand specifies a 6-byte memory location. If the operand-size attribute is 32 bits, the 16-bit limit field of the register is stored in the lower 2 bytes of the memory location and the 32-bit base address is stored in the upper 4 bytes. If the operand-size attribute is 16 bits, the limit is stored in the lower 2 bytes and the 24-bit base address is stored in the third, fourth, and fifth byte, with the sixth byte filled with 0s."
  388. "The SGDT and SIDT instructions are only useful in operating-system software; however, they can be used in application programs without causing an exception to be generated."
  389. ""
  390. "Intel Architecture Compatibility"
  391. ""
  392. "The 16-bit forms of the SGDT and SIDT instructions are compatible with the Intel 286 processor, if the upper 8 bits are not referenced. The Intel 286 processor fills these bits with 1s; the Pentium Pro, Pentium, Intel486, and Intel386 processors fill these bits with 0s."
  393. [2]
  394. "IF instruction is IDTR"
  395. "THEN"
  396. "IF OperandSize = 16"
  397. "THEN"
  398. "DEST[0:15] ¼ IDTR(Limit);"
  399. "DEST[16:39] ¼ IDTR(Base); (* 24 bits of base address loaded; *)"
  400. "DEST[40:47] ¼ 0;"
  401. "ELSE (* 32-bit Operand Size *)"
  402. "DEST[0:15] ¼ IDTR(Limit);"
  403. "DEST[16:47] ¼ IDTR(Base); (* full 32-bit base address loaded *)"
  404. "FI;"
  405. "ELSE (* instruction is SGDT *)"
  406. "IF OperandSize = 16"
  407. "THEN"
  408. "DEST[0:15] ¼ GDTR(Limit);"
  409. "DEST[16:39] ¼ GDTR(Base); (* 24 bits of base address loaded; *)"
  410. "DEST[40:47] ¼ 0;"
  411. "ELSE (* 32-bit Operand Size *)"
  412. "DEST[0:15] ¼ GDTR(Limit);"
  413. "DEST[16:47] ¼ GDTR(Base); (* full 32-bit base address loaded *)"
  414. "FI;"
  415. "FI;"
  416. [3]
  417. "None."
  418. [4]
  419. "Protected Mode Exceptions"
  420. ""
  421. "#UD If the destination operand is a register."
  422. "#GP(0) If the destination is located 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."
  423. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  424. "#PF(fault-code) If a page fault occurs."
  425. "#AC(0) If an unaligned memory access occurs when the CPL is 3 and alignment checking is enabled."
  426. ""
  427. "Real-Address Mode Exceptions"
  428. ""
  429. "#UD If the destination operand is a register."
  430. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  431. "#SS If a memory operand effective address is outside the SS segment limit."
  432. ""
  433. "Virtual-8086 Mode Exceptions"
  434. ""
  435. "#UD If the destination operand is a register."
  436. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  437. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  438. "#PF(fault-code) If a page fault occurs."
  439. "#AC(0) If an unaligned memory access occurs when alignment checking is enabled."
  440. [5]
  441. "0F 01 /0 SGDT m Store GDTR to m"
  442. "0F 01 /1 SIDT m Store IDTR to m"
  443. [6]
  444. </SGDT>
  445. </SIDT>
  446. <SHLD>
  447. [1]
  448. "SHLD: Double Precision Shift Left"
  449. ""
  450. "Shifts the first operand (destination operand) to the left the number of bits specified by the third operand (count operand). The second operand (source operand) provides bits to shift in from the right (starting with bit 0 of the destination operand). The destination operand can be a register or a memory location; the source operand is a register. The count operand is an unsigned integer that can be an immediate byte or the contents of the CL register. Only bits 0 through 4 of the count are used, which masks the count to a value between 0 and 31. If the count is greater than the operand size, the result in the destination operand is undefined."
  451. "If the count is 1 or greater, the CF flag is filled with the last bit shifted out of the destination operand. For a 1-bit shift, the OF flag is set if a sign change occurred; otherwise, it is cleared. If the count operand is 0, the flags are not affected. The SHLD instruction is useful for multiprecision shifts of 64 bits or more."
  452. [2]
  453. "COUNT ¼ COUNT MOD 32;"
  454. "SIZE ¼ OperandSize"
  455. "IF COUNT = 0"
  456. "THEN"
  457. "no operation"
  458. "ELSE"
  459. "IF COUNT │ SIZE"
  460. "THEN (* Bad parameters *)"
  461. "DEST is undefined;"
  462. "CF, OF, SF, ZF, AF, PF are undefined;"
  463. "ELSE (* Perform the shift *)"
  464. "CF ¼ BIT[DEST, SIZE û COUNT];"
  465. "(* Last bit shifted out on exit *)"
  466. "FOR i ¼ SIZE û 1 DOWNTO COUNT"
  467. "DO"
  468. "Bit(DEST, i) ¼ Bit(DEST, i û COUNT);"
  469. "OD;"
  470. "FOR i ¼ COUNT û 1 DOWNTO 0"
  471. "DO"
  472. "BIT[DEST, i] ¼ BIT[SRC, i û COUNT + SIZE];"
  473. "OD;"
  474. "FI;"
  475. "FI;"
  476. [3]
  477. "If the count is 1 or greater, the CF flag is filled with the last bit shifted out of the destination operand and the SF, ZF, and PF flags are set according to the value of the result. For a 1-bit shift, the OF flag is set if a sign change occurred; otherwise, it is cleared. For shifts greater than 1 bit, the OF flag is undefined. If a shift occurs, the AF flag is undefined. If the count operand is 0, the flags are not affected. If the count is greater than the operand size, the flags are undefined."
  478. [4]
  479. "Protected Mode Exceptions"
  480. ""
  481. "#GP(0) If the destination is located 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 contains a null segment selector."
  482. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  483. "#PF(fault-code) If a page fault occurs."
  484. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  485. ""
  486. "Real-Address Mode Exceptions"
  487. ""
  488. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  489. "#SS If a memory operand effective address is outside the SS segment limit."
  490. ""
  491. "Virtual-8086 Mode Exceptions"
  492. ""
  493. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  494. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  495. "#PF(fault-code) If a page fault occurs."
  496. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  497. [5]
  498. "0F A4 SHLD r/m16,r16,imm8 Shift r/m16 to left imm8 places while shifting bits from r16 in from the right"
  499. "0F A5 SHLD r/m16,r16,CL Shift r/m16 to left CL places while shifting bits from r16 in from the right"
  500. "0F A4 SHLD r/m32,r32,imm8 Shift r/m32 to left imm8 places while shifting bits from r32 in from the right"
  501. "0F A5 SHLD r/m32,r32,CL Shift r/m32 to left CL places while shifting bits from r32 in from the right"
  502. [6]
  503. </SHLD>
  504. <SHRD>
  505. [1]
  506. "SHRD: Double Precision Shift Right"
  507. ""
  508. "Shifts the first operand (destination operand) to the right the number of bits specified by the third operand (count operand). The second operand (source operand) provides bits to shift in from the left (starting with the most significant bit of the destination operand). The destination operand can be a register or a memory location; the source operand is a register. The count operand is an unsigned integer that can be an immediate byte or the contents of the CL register. Only bits 0 through 4 of the count are used, which masks the count to a value between 0 and 31. If the count is greater than the operand size, the result in the destination operand is undefined."
  509. "If the count is 1 or greater, the CF flag is filled with the last bit shifted out of the destination operand. For a 1-bit shift, the OF flag is set if a sign change occurred; otherwise, it is cleared. If the count operand is 0, the flags are not affected. The SHRD instruction is useful for multiprecision shifts of 64 bits or more."
  510. [2]
  511. "COUNT ¼ COUNT MOD 32;"
  512. "SIZE ¼ OperandSize"
  513. "IF COUNT = 0"
  514. "THEN"
  515. "no operation"
  516. "ELSE"
  517. "IF COUNT │ SIZE"
  518. "THEN (* Bad parameters *)"
  519. "DEST is undefined;"
  520. "CF, OF, SF, ZF, AF, PF are undefined;"
  521. "ELSE (* Perform the shift *)"
  522. "CF ¼ BIT[DEST, COUNT û 1]; (* last bit shifted out on exit *)"
  523. "FOR i ¼ 0 TO SIZE û 1 û COUNT"
  524. "DO"
  525. "BIT[DEST, i] ¼ BIT[DEST , i û COUNT];"
  526. "OD;"
  527. "FOR i ¼ SIZE û COUNT TO SIZE û 1"
  528. "DO"
  529. "BIT[DEST ,i] ¼ BIT[inBits,i+COUNT û SIZE];"
  530. "OD;"
  531. "FI;"
  532. "FI;"
  533. [3]
  534. "If the count is 1 or greater, the CF flag is filled with the last bit shifted out of the destination operand and the SF, ZF, and PF flags are set according to the value of the result. For a 1-bit shift, the OF flag is set if a sign change occurred; otherwise, it is cleared. For shifts greater than 1 bit, the OF flag is undefined. If a shift occurs, the AF flag is undefined. If the count operand is 0, the flags are not affected. If the count is greater than the operand size, the flags are undefined."
  535. [4]
  536. "Protected Mode Exceptions"
  537. ""
  538. "#GP(0) If the destination is located 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 contains a null segment selector."
  539. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  540. "#PF(fault-code) If a page fault occurs."
  541. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  542. ""
  543. "Real-Address Mode Exceptions"
  544. ""
  545. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  546. "#SS If a memory operand effective address is outside the SS segment limit."
  547. ""
  548. "Virtual-8086 Mode Exceptions"
  549. ""
  550. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  551. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  552. "#PF(fault-code) If a page fault occurs."
  553. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  554. [5]
  555. "0F AC SHRD r/m16,r16,imm8 Shift r/m16 to right imm8 places while shifting bits from r16 in from the left"
  556. "0F AD SHRD r/m16,r16,CL Shift r/m16 to right CL places while shifting bits from r16 in from the left"
  557. "0F AC SHRD r/m32,r32,imm8 Shift r/m32 to right imm8 places while shifting bits from r32 in from the left"
  558. "0F AD SHRD r/m32,r32,CL Shift r/m32 to right CL places while shifting bits from r32 in from the left"
  559. [6]
  560. </SHRD>
  561. <SLDT>
  562. [1]
  563. "SLDT: Store Local Descriptor Table Register"
  564. ""
  565. "Stores the segment selector from the local descriptor table register (LDTR) in the destination operand. The destination operand can be a general-purpose register or a memory location. The segment selector stored with this instruction points to the segment descriptor (located in the GDT) for the current LDT. This instruction can only be executed in protected mode."
  566. "When the destination operand is a 32-bit register, the 16-bit segment selector is copied into the lower-order 16 bits of the register. The high-order 16 bits of the register are cleared to 0s for the Pentium Pro processor and are undefined for Pentium, Intel486, and Intel386 processors. When the destination operand is a memory location, the segment selector is written to memory as a 16-bit quantity, regardless of the operand size. The SLDT instruction is only useful in operating-system software; however, it can be used in application programs."
  567. [2]
  568. "DEST ¼ LDTR(SegmentSelector);"
  569. [3]
  570. "None."
  571. [4]
  572. "Protected Mode Exceptions"
  573. ""
  574. "#GP(0) If the destination is located 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."
  575. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  576. "#PF(fault-code) If a page fault occurs."
  577. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  578. ""
  579. "Real-Address Mode Exceptions"
  580. ""
  581. "#UD The SLDT instruction is not recognized in real-address mode."
  582. ""
  583. "Virtual-8086 Mode Exceptions"
  584. ""
  585. "#UD The SLDT instruction is not recognized in virtual-8086 mode."
  586. [5]
  587. "0F 00 /0 SLDT r/m16 Stores segment selector from LDTR in r/m16"
  588. "0F 00 /0 SLDT r/m32 Store segment selector from LDTR in low-order 16 bits of r/m32"
  589. [6]
  590. </SLDT>
  591. <SMSW>
  592. [1]
  593. "SMSW: Store Machine Status Word"
  594. ""
  595. "Stores the machine status word (bits 0 through 15 of control register CR0) into the destination operand. The destination operand can be a 16-bit general-purpose register or a memory location. When the destination operand is a 32-bit register, the low-order 16 bits of register CR0 are copied into the low-order 16 bits of the register and the upper 16 bits of the register are undefined."
  596. "When the destination operand is a memory location, the low-order 16 bits of register CR0 are written to memory as a 16-bit quantity, regardless of the operand size. The SMSW instruction is only useful in operating-system software; however, it is not a privileged instruction and can be used in application programs. This instruction is provided for compatibility with the Intel 286 processor. Programs and procedures intended to run on the Pentium Pro, Pentium, Intel486, and Intel386 processors should use the MOV (control registers) instruction to load the machine status word."
  597. [2]
  598. "DEST ¼ CR0[15:0]; (* Machine status word *);"
  599. [3]
  600. "None."
  601. [4]
  602. "Protected Mode Exceptions"
  603. ""
  604. "#GP(0) If the destination is located 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."
  605. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  606. "#PF(fault-code) If a page fault occurs."
  607. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  608. ""
  609. "Real-Address Mode Exceptions"
  610. ""
  611. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  612. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  613. ""
  614. "Virtual-8086 Mode Exceptions"
  615. ""
  616. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  617. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  618. "#PF(fault-code) If a page fault occurs."
  619. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  620. [5]
  621. "0F 01 /4 SMSW r/m16 Store machine status word to r/m16"
  622. "0F 01 /4 SMSW r32/m16 Store machine status word in low-order 16 bits of r32/m16; high-order 16 bits of r32 are undefined"
  623. [6]
  624. </SMSW>
  625. <STC>
  626. [1]
  627. "STC: Set Carry Flag"
  628. ""
  629. "Sets the CF flag in the EFLAGS register."
  630. [2]
  631. "CF ¼ 1;"
  632. [3]
  633. "The CF flag is set. The OF, ZF, SF, AF, and PF flags are unaffected."
  634. [4]
  635. "(All Operating Modes)"
  636. "None."
  637. [5]
  638. "F9 STC Set CF flag"
  639. [6]
  640. </STC>
  641. <STD>
  642. [1]
  643. "STD: Set Direction Flag"
  644. ""
  645. "Sets the DF flag in the EFLAGS register. When the DF flag is set to 1, string operations decrement the index registers (ESI and/or EDI)."
  646. [2]
  647. "DF ¼ 1;"
  648. [3]
  649. "The DF flag is set. The CF, OF, ZF, SF, AF, and PF flags are unaffected."
  650. [4]
  651. "(All Operating Modes)"
  652. "None."
  653. [5]
  654. "FD STD Set DF flag"
  655. [6]
  656. </STD>
  657. <STI>
  658. [1]
  659. "STI: Set Interrupt Flag"
  660. ""
  661. "Sets the interrupt flag (IF) in the EFLAGS register. After the IF flag is set, the processor begins responding to external, maskable interrupts after the next instruction is executed. The delayed effect of this instruction is provided to allow interrupts to be enabled just before returning from a procedure (or subroutine). For instance, if an STI instruction is followed by an RET instruction, the RET instruction is allowed to execute before external interrupts are recognized 1 . This behavior allows external interrupts to be disabled at the beginning of a procedure and enabled again at the end of the procedure. If the STI instruction is followed by a CLI instruction (which clears the IF flag), the effect of the STI instruction is negated. The IF flag and the STI and CLI instructions have no affect on the generation of exceptions and NMI interrupts."
  662. [2]
  663. "IF PE=0 (* Executing in real-address mode *)"
  664. "THEN"
  665. "IF ¼ 1; (* Set Interrupt Flag *)"
  666. "ELSE (* Executing in protected mode or virtual-8086 mode *)"
  667. "IF VM=0 (* Executing in protected mode*)"
  668. "THEN"
  669. "IF IOPL = 3"
  670. "THEN"
  671. "IF ¼ 1;"
  672. "ELSE"
  673. "IF CPL ú IOPL"
  674. "THEN"
  675. "IF ¼ 1;"
  676. "ELSE"
  677. "#GP(0);"
  678. "FI;"
  679. "FI;"
  680. "ELSE (* Executing in Virtual-8086 mode *)"
  681. "#GP(0); (* Trap to virtual-8086 monitor *)"
  682. "FI;"
  683. "FI;"
  684. [3]
  685. "The IF flag is set to 1."
  686. [4]
  687. "Protected Mode Exceptions"
  688. ""
  689. "#GP(0) If the CPL is greater (has less privilege) than the IOPL of the current program or procedure."
  690. ""
  691. "Real-Address Mode Exceptions"
  692. ""
  693. "None."
  694. ""
  695. "Virtual-8086 Mode Exceptions"
  696. ""
  697. "#GP(0) If the CPL is greater (has less privilege) than the IOPL of the current program or procedure."
  698. [5]
  699. "FB STI Set interrupt flag; external, maskable interrupts enabled"
  700. [6]
  701. </STI>
  702. <STOS>
  703. <STOSB>
  704. <STOSD>
  705. <STOSW>
  706. [1]
  707. "STOS/STOSB/STOSW/STOSD: Store String"
  708. ""
  709. "Stores a byte, word, or doubleword from the AL, AX, or EAX register, respectively, into the destination operand. The destination operand is a memory location, the address of which is read from either the ES:EDI or the ES:DI registers (depending on the address-size attribute of the instruction, 32 or 16, respectively). The ES segment cannot be overridden with a segment override prefix."
  710. "At the assembly-code level, two forms of this instruction are allowed: the ôexplicit-operandsö form and the ôno-operandsö form. The explicit-operands form (specified with the STOS mnemonic) allows the destination operand to be specified explicitly. Here, the destination operand should be a symbol that indicates the size and location of the destination value. The source operand is then automatically selected to match the size of the destination operand (the AL register for byte operands, AX for word operands, and EAX for doubleword operands). This explicit-operands form is provided to allow documentation; however, note that the documentation provided by this form can be misleading. That is, the destination operand symbol must specify the correct type (size) of the operand (byte, word, or doubleword), but it does not have to specify the correct location. The location is always specified by the ES:(E)DI registers, which must be loaded correctly before the store string instruction is executed."
  711. "The no-operands form provides ôshort formsö of the byte, word, and doubleword versions of the STOS instructions. Here also ES:(E)DI is assumed to be the destination operand and the AL, AX, or EAX register is assumed to be the source operand. The size of the destination and source operands is selected with the mnemonic: STOSB (byte read from register AL), STOSW (word from AX), or STOSD (doubleword from EAX). After the byte, word, or doubleword is transferred from the AL, AX, or EAX register to the memory location, the (E)DI register is incremented or decremented automatically according to the setting of the DF flag in the EFLAGS register. (If the DF flag is 0, the (E)DI register is incremented; if the DF flag is 1, the (E)DI register is decremented.) The (E)DI register is incremented or decremented by 1 for byte operations, by 2 for word operations, or by 4 for doubleword operations."
  712. "The STOS, STOSB, STOSW, and STOSD instructions can be preceded by the REP prefix for block loads of ECX bytes, words, or doublewords. More often, however, these instructions are used within a LOOP construct because data needs to be moved into the AL, AX, or EAX register before it can be stored."
  713. [2]
  714. "IF (byte store)"
  715. "THEN"
  716. "DEST ¼ AL;"
  717. "THEN IF DF = 0"
  718. "THEN (E)DI ¼ (E)DI + 1;"
  719. "ELSE (E)DI ¼ (E)DI û 1;"
  720. "FI;"
  721. "ELSE IF (word store)"
  722. "THEN"
  723. "DEST ¼ AX;"
  724. "THEN IF DF = 0"
  725. "THEN (E)DI ¼ (E)DI + 2;"
  726. "ELSE (E)DI ¼ (E)DI û 2;"
  727. "FI;"
  728. "ELSE (* doubleword store *)"
  729. "DEST ¼ EAX;"
  730. "THEN IF DF = 0"
  731. "THEN (E)DI ¼ (E)DI + 4;"
  732. "ELSE (E)DI ¼ (E)DI û 4;"
  733. "FI;"
  734. "FI;"
  735. "FI;"
  736. [3]
  737. "None."
  738. [4]
  739. "Protected Mode Exceptions"
  740. ""
  741. "#GP(0) If the destination is located in a nonwritable segment. If a memory operand effective address is outside the limit of the ES segment. If the ES register contains a null segment selector."
  742. "#PF(fault-code) If a page fault occurs."
  743. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  744. ""
  745. "Real-Address Mode Exceptions"
  746. ""
  747. "#GP If a memory operand effective address is outside the ES segment limit."
  748. ""
  749. "Virtual-8086 Mode Exceptions"
  750. ""
  751. "#GP(0) If a memory operand effective address is outside the ES segment limit."
  752. "#PF(fault-code) If a page fault occurs."
  753. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  754. [5]
  755. "AA STOS m8 Store AL at address ES:(E)DI"
  756. "AB STOS m16 Store AX at address ES:(E)DI"
  757. "AB STOS m32 Store EAX at address ES:(E)DI"
  758. "AA STOSB Store AL at address ES:(E)DI"
  759. "AB STOSW Store AX at address ES:(E)DI"
  760. "AB STOSD Store EAX at address ES:(E)DI"
  761. [6]
  762. </STOS>
  763. </STOSB>
  764. </STOSD>
  765. </STOSW>
  766. <STR>
  767. [1]
  768. "STR: Store Task Register"
  769. ""
  770. "Stores the segment selector from the task register (TR) in the destination operand. The destination operand can be a general-purpose register or a memory location. The segment selector stored with this instruction points to the task state segment (TSS) for the currently running task. When the destination operand is a 32-bit register, the 16-bit segment selector is copied into the lower 16 bits of the register and the upper 16 bits of the register are cleared to 0s. When the destination operand is a memory location, the segment selector is written to memory as a 16-bit quantity, regardless of operand size."
  771. "The STR instruction is useful only in operating-system software. It can only be executed in protected mode."
  772. [2]
  773. "DEST ¼ TR(SegmentSelector);"
  774. [3]
  775. "None."
  776. [4]
  777. "Protected Mode Exceptions"
  778. ""
  779. "#GP(0) If the destination is a memory operand that is located in a nonwritable segment or if the 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."
  780. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  781. "#PF(fault-code) If a page fault occurs."
  782. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  783. ""
  784. "Real-Address Mode Exceptions"
  785. ""
  786. "#UD The STR instruction is not recognized in real-address mode."
  787. ""
  788. "Virtual-8086 Mode Exceptions"
  789. ""
  790. "#UD The STR instruction is not recognized in virtual-8086 mode."
  791. [5]
  792. "0F 00 /1 STR r/m16 Stores segment selector from TR in r/m16"
  793. [6]
  794. </STR>
  795. <SUB>
  796. [1]
  797. "SUB: Subtract"
  798. ""
  799. "Subtracts the second operand (source operand) from the first operand (destination operand) and stores the result in the destination operand. The destination operand can be a register or a memory location; the source operand can be an immediate, register, or memory location. (However, two memory operands cannot be used in one instruction.) When an immediate value is used as an operand, it is sign-extended to the length of the destination operand format."
  800. "The SUB instruction does not distinguish between signed or unsigned operands. Instead, the processor evaluates the result for both data types and sets the OF and CF flags to indicate a borrow in the signed or unsigned result, respectively. The SF flag indicates the sign of the signed result."
  801. [2]
  802. "DEST ¼ DEST û SRC;"
  803. [3]
  804. "The OF, SF, ZF, AF, PF, and CF flags are set according to the result."
  805. [4]
  806. "Protected Mode Exceptions"
  807. ""
  808. "#GP(0) If the destination is located 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 contains a null segment selector."
  809. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  810. "#PF(fault-code) If a page fault occurs."
  811. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  812. ""
  813. "Real-Address Mode Exceptions"
  814. ""
  815. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  816. "#SS If a memory operand effective address is outside the SS segment limit."
  817. ""
  818. "Virtual-8086 Mode Exceptions"
  819. ""
  820. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  821. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  822. "#PF(fault-code) If a page fault occurs."
  823. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  824. [5]
  825. "2C ib SUB AL, imm8 Subtract imm8 from AL"
  826. "2D iw SUB AX, imm16 Subtract imm16 from AX"
  827. "2D id SUB EAX, imm32 Subtract imm32 from EAX"
  828. "80 /5 ib SUB r/m8,imm8 Subtract imm8 from r/m8"
  829. "81 /5 iw SUB r/m16,imm16 Subtract imm16 from r/m16"
  830. "81 /5 id SUB r/m32,imm32 Subtract imm32 from r/m32"
  831. "83 /5 ib SUB r/m16,imm8 Subtract sign-extended imm8 from r/m16"
  832. "83 /5 ib SUB r/m32,imm8 Subtract sign-extended imm8 from r/m32"
  833. "28 / r SUB r/m8,r8 Subtract r8 from r/m8"
  834. "29 / r SUB r/m16,r16 Subtract r16 from r/m16"
  835. "29 / r SUB r/m32,r32 Subtract r32 from r/m32"
  836. "2A / r SUB r8,r/m8 Subtract r/m8 from r8"
  837. "2B / r SUB r16,r/m16 Subtract r/m16 from r16"
  838. "2B / r SUB r32,r/m32 Subtract r/m32 from r32"
  839. [6]
  840. </SUB>
  841. <SS:>
  842. [1]
  843. "Internal disassembler's symbol which indicates that the next command is used with the SS: segment."
  844. [2]
  845. "═/┴"
  846. [3]
  847. "═/┴"
  848. [4]
  849. "═/┴"
  850. [5]
  851. "N/A"
  852. [6]
  853. </SS:>