nasmdoc.src
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:370k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. c{CS} is pushed as well as c{IP} if and only if the call is a far
  2. call, i.e. a destination segment address is specified in the
  3. instruction. The forms involving two colon-separated arguments are
  4. far calls; so are the c{CALL FAR mem} forms.
  5. You can choose between the two immediate i{far call} forms (c{CALL
  6. imm:imm}) by the use of the c{WORD} and c{DWORD} keywords: c{CALL
  7. WORD 0x1234:0x5678}) or c{CALL DWORD 0x1234:0x56789abc}.
  8. The c{CALL FAR mem} forms execute a far call by loading the
  9. destination address out of memory. The address loaded consists of 16
  10. or 32 bits of offset (depending on the operand size), and 16 bits of
  11. segment. The operand size may be overridden using c{CALL WORD FAR
  12. mem} or c{CALL DWORD FAR mem}.
  13. The c{CALL r/m} forms execute a i{near call} (within the same
  14. segment), loading the destination address out of memory or out of a
  15. register. The keyword c{NEAR} may be specified, for clarity, in
  16. these forms, but is not necessary. Again, operand size can be
  17. overridden using c{CALL WORD mem} or c{CALL DWORD mem}.
  18. As a convenience, NASM does not require you to call a far procedure
  19. symbol by coding the cumbersome c{CALL SEG routine:routine}, but
  20. instead allows the easier synonym c{CALL FAR routine}.
  21. The c{CALL r/m} forms given above are near calls; NASM will accept
  22. the c{NEAR} keyword (e.g. c{CALL NEAR [address]}), even though it
  23. is not strictly necessary.
  24. H{insCBW} ic{CBW}, ic{CWD}, ic{CDQ}, ic{CWDE}: Sign Extensions
  25. c CBW                           ; o16 98               [8086]
  26. c CWD                           ; o16 99               [8086]
  27. c CDQ                           ; o32 99               [386]
  28. c CWDE                          ; o32 98               [386]
  29. All these instructions sign-extend a short value into a longer one,
  30. by replicating the top bit of the original value to fill the
  31. extended one.
  32. c{CBW} extends c{AL} into c{AX} by repeating the top bit of
  33. c{AL} in every bit of c{AH}. c{CWD} extends c{AX} into c{DX:AX}
  34. by repeating the top bit of c{AX} throughout c{DX}. c{CWDE}
  35. extends c{AX} into c{EAX}, and c{CDQ} extends c{EAX} into
  36. c{EDX:EAX}.
  37. H{insCLC} ic{CLC}, ic{CLD}, ic{CLI}, ic{CLTS}: Clear Flags
  38. c CLC                           ; F8                   [8086]
  39. c CLD                           ; FC                   [8086]
  40. c CLI                           ; FA                   [8086]
  41. c CLTS                          ; 0F 06                [286,PRIV]
  42. These instructions clear various flags. c{CLC} clears the carry
  43. flag; c{CLD} clears the direction flag; c{CLI} clears the
  44. interrupt flag (thus disabling interrupts); and c{CLTS} clears the
  45. task-switched (c{TS}) flag in c{CR0}.
  46. To set the carry, direction, or interrupt flags, use the c{STC},
  47. c{STD} and c{STI} instructions (k{insSTC}). To invert the carry
  48. flag, use c{CMC} (k{insCMC}).
  49. H{insCMC} ic{CMC}: Complement Carry Flag
  50. c CMC                           ; F5                   [8086]
  51. c{CMC} changes the value of the carry flag: if it was 0, it sets it
  52. to 1, and vice versa.
  53. H{insCMOVcc} ic{CMOVcc}: Conditional Move
  54. c CMOVcc reg16,r/m16            ; o16 0F 40+cc /r      [P6]
  55. c CMOVcc reg32,r/m32            ; o32 0F 40+cc /r      [P6]
  56. c{CMOV} moves its source (second) operand into its destination
  57. (first) operand if the given condition code is satisfied; otherwise
  58. it does nothing.
  59. For a list of condition codes, see k{iref-cc}.
  60. Although the c{CMOV} instructions are flagged c{P6} above, they
  61. may not be supported by all Pentium Pro processors; the c{CPUID}
  62. instruction (k{insCPUID}) will return a bit which indicates whether
  63. conditional moves are supported.
  64. H{insCMP} ic{CMP}: Compare Integers
  65. c CMP r/m8,reg8                 ; 38 /r                [8086]
  66. c CMP r/m16,reg16               ; o16 39 /r            [8086]
  67. c CMP r/m32,reg32               ; o32 39 /r            [386]
  68. c CMP reg8,r/m8                 ; 3A /r                [8086]
  69. c CMP reg16,r/m16               ; o16 3B /r            [8086]
  70. c CMP reg32,r/m32               ; o32 3B /r            [386]
  71. c CMP r/m8,imm8                 ; 80 /0 ib             [8086]
  72. c CMP r/m16,imm16               ; o16 81 /0 iw         [8086]
  73. c CMP r/m32,imm32               ; o32 81 /0 id         [386]
  74. c CMP r/m16,imm8                ; o16 83 /0 ib         [8086]
  75. c CMP r/m32,imm8                ; o32 83 /0 ib         [386]
  76. c CMP AL,imm8                   ; 3C ib                [8086]
  77. c CMP AX,imm16                  ; o16 3D iw            [8086]
  78. c CMP EAX,imm32                 ; o32 3D id            [386]
  79. c{CMP} performs a `mental' subtraction of its second operand from
  80. its first operand, and affects the flags as if the subtraction had
  81. taken place, but does not store the result of the subtraction
  82. anywhere.
  83. In the forms with an 8-bit immediate second operand and a longer
  84. first operand, the second operand is considered to be signed, and is
  85. sign-extended to the length of the first operand. In these cases,
  86. the c{BYTE} qualifier is necessary to force NASM to generate this
  87. form of the instruction.
  88. H{insCMPSB} ic{CMPSB}, ic{CMPSW}, ic{CMPSD}: Compare Strings
  89. c CMPSB                         ; A6                   [8086]
  90. c CMPSW                         ; o16 A7               [8086]
  91. c CMPSD                         ; o32 A7               [386]
  92. c{CMPSB} compares the byte at c{[DS:SI]} or c{[DS:ESI]} with the
  93. byte at c{[ES:DI]} or c{[ES:EDI]}, and sets the flags accordingly.
  94. It then increments or decrements (depending on the direction flag:
  95. increments if the flag is clear, decrements if it is set) c{SI} and
  96. c{DI} (or c{ESI} and c{EDI}).
  97. The registers used are c{SI} and c{DI} if the address size is 16
  98. bits, and c{ESI} and c{EDI} if it is 32 bits. If you need to use
  99. an address size not equal to the current c{BITS} setting, you can
  100. use an explicit ic{a16} or ic{a32} prefix.
  101. The segment register used to load from c{[SI]} or c{[ESI]} can be
  102. overridden by using a segment register name as a prefix (for
  103. example, c{es cmpsb}). The use of c{ES} for the load from c{[DI]}
  104. or c{[EDI]} cannot be overridden.
  105. c{CMPSW} and c{CMPSD} work in the same way, but they compare a
  106. word or a doubleword instead of a byte, and increment or decrement
  107. the addressing registers by 2 or 4 instead of 1.
  108. The c{REPE} and c{REPNE} prefixes (equivalently, c{REPZ} and
  109. c{REPNZ}) may be used to repeat the instruction up to c{CX} (or
  110. c{ECX} - again, the address size chooses which) times until the
  111. first unequal or equal byte is found.
  112. H{insCMPXCHG} ic{CMPXCHG}, ic{CMPXCHG486}: Compare and Exchange
  113. c CMPXCHG r/m8,reg8             ; 0F B0 /r             [PENT]
  114. c CMPXCHG r/m16,reg16           ; o16 0F B1 /r         [PENT]
  115. c CMPXCHG r/m32,reg32           ; o32 0F B1 /r         [PENT]
  116. c CMPXCHG486 r/m8,reg8          ; 0F A6 /r             [486,UNDOC]
  117. c CMPXCHG486 r/m16,reg16        ; o16 0F A7 /r         [486,UNDOC]
  118. c CMPXCHG486 r/m32,reg32        ; o32 0F A7 /r         [486,UNDOC]
  119. These two instructions perform exactly the same operation; however,
  120. apparently some (not all) 486 processors support it under a
  121. non-standard opcode, so NASM provides the undocumented
  122. c{CMPXCHG486} form to generate the non-standard opcode.
  123. c{CMPXCHG} compares its destination (first) operand to the value in
  124. c{AL}, c{AX} or c{EAX} (depending on the size of the
  125. instruction). If they are equal, it copies its source (second)
  126. operand into the destination and sets the zero flag. Otherwise, it
  127. clears the zero flag and leaves the destination alone.
  128. c{CMPXCHG} is intended to be used for atomic operations in
  129. multitasking or multiprocessor environments. To safely update a
  130. value in shared memory, for example, you might load the value into
  131. c{EAX}, load the updated value into c{EBX}, and then execute the
  132. instruction c{lock cmpxchg [value],ebx}. If c{value} has not
  133. changed since being loaded, it is updated with your desired new
  134. value, and the zero flag is set to let you know it has worked. (The
  135. c{LOCK} prefix prevents another processor doing anything in the
  136. middle of this operation: it guarantees atomicity.) However, if
  137. another processor has modified the value in between your load and
  138. your attempted store, the store does not happen, and you are
  139. notified of the failure by a cleared zero flag, so you can go round
  140. and try again.
  141. H{insCMPXCHG8B} ic{CMPXCHG8B}: Compare and Exchange Eight Bytes
  142. c CMPXCHG8B mem                 ; 0F C7 /1             [PENT]
  143. This is a larger and more unwieldy version of c{CMPXCHG}: it
  144. compares the 64-bit (eight-byte) value stored at c{[mem]} with the
  145. value in c{EDX:EAX}. If they are equal, it sets the zero flag and
  146. stores c{ECX:EBX} into the memory area. If they are unequal, it
  147. clears the zero flag and leaves the memory area untouched.
  148. H{insCPUID} ic{CPUID}: Get CPU Identification Code
  149. c CPUID                         ; 0F A2                [PENT]
  150. c{CPUID} returns various information about the processor it is
  151. being executed on. It fills the four registers c{EAX}, c{EBX},
  152. c{ECX} and c{EDX} with information, which varies depending on the
  153. input contents of c{EAX}.
  154. c{CPUID} also acts as a barrier to serialise instruction execution:
  155. executing the c{CPUID} instruction guarantees that all the effects
  156. (memory modification, flag modification, register modification) of
  157. previous instructions have been completed before the next
  158. instruction gets fetched.
  159. The information returned is as follows:
  160. b If c{EAX} is zero on input, c{EAX} on output holds the maximum
  161. acceptable input value of c{EAX}, and c{EBX:EDX:ECX} contain the
  162. string c{"GenuineIntel"} (or not, if you have a clone processor).
  163. That is to say, c{EBX} contains c{"Genu"} (in NASM's own sense of
  164. character constants, described in k{chrconst}), c{EDX} contains
  165. c{"ineI"} and c{ECX} contains c{"ntel"}.
  166. b If c{EAX} is one on input, c{EAX} on output contains version
  167. information about the processor, and c{EDX} contains a set of
  168. feature flags, showing the presence and absence of various features.
  169. For example, bit 8 is set if the c{CMPXCHG8B} instruction
  170. (k{insCMPXCHG8B}) is supported, bit 15 is set if the conditional
  171. move instructions (k{insCMOVcc} and k{insFCMOVB}) are supported,
  172. and bit 23 is set if MMX instructions are supported.
  173. b If c{EAX} is two on input, c{EAX}, c{EBX}, c{ECX} and c{EDX}
  174. all contain information about caches and TLBs (Translation Lookahead
  175. Buffers).
  176. For more information on the data returned from c{CPUID}, see the
  177. documentation on Intel's web site.
  178. H{insDAA} ic{DAA}, ic{DAS}: Decimal Adjustments
  179. c DAA                           ; 27                   [8086]
  180. c DAS                           ; 2F                   [8086]
  181. These instructions are used in conjunction with the add and subtract
  182. instructions to perform binary-coded decimal arithmetic in
  183. e{packed} (one BCD digit per nibble) form. For the unpacked
  184. equivalents, see k{insAAA}.
  185. c{DAA} should be used after a one-byte c{ADD} instruction whose
  186. destination was the c{AL} register: by means of examining the value
  187. in the c{AL} and also the auxiliary carry flag c{AF}, it
  188. determines whether either digit of the addition has overflowed, and
  189. adjusts it (and sets the carry and auxiliary-carry flags) if so. You
  190. can add long BCD strings together by doing c{ADD}/c{DAA} on the
  191. low two digits, then doing c{ADC}/c{DAA} on each subsequent pair
  192. of digits.
  193. c{DAS} works similarly to c{DAA}, but is for use after c{SUB}
  194. instructions rather than c{ADD}.
  195. H{insDEC} ic{DEC}: Decrement Integer
  196. c DEC reg16                     ; o16 48+r             [8086]
  197. c DEC reg32                     ; o32 48+r             [386]
  198. c DEC r/m8                      ; FE /1                [8086]
  199. c DEC r/m16                     ; o16 FF /1            [8086]
  200. c DEC r/m32                     ; o32 FF /1            [386]
  201. c{DEC} subtracts 1 from its operand. It does e{not} affect the
  202. carry flag: to affect the carry flag, use c{SUB something,1} (see
  203. k{insSUB}). See also c{INC} (k{insINC}).
  204. H{insDIV} ic{DIV}: Unsigned Integer Divide
  205. c DIV r/m8                      ; F6 /6                [8086]
  206. c DIV r/m16                     ; o16 F7 /6            [8086]
  207. c DIV r/m32                     ; o32 F7 /6            [386]
  208. c{DIV} performs unsigned integer division. The explicit operand
  209. provided is the divisor; the dividend and destination operands are
  210. implicit, in the following way:
  211. b For c{DIV r/m8}, c{AX} is divided by the given operand; the
  212. quotient is stored in c{AL} and the remainder in c{AH}.
  213. b For c{DIV r/m16}, c{DX:AX} is divided by the given operand; the
  214. quotient is stored in c{AX} and the remainder in c{DX}.
  215. b For c{DIV r/m32}, c{EDX:EAX} is divided by the given operand;
  216. the quotient is stored in c{EAX} and the remainder in c{EDX}.
  217. Signed integer division is performed by the c{IDIV} instruction:
  218. see k{insIDIV}.
  219. H{insEMMS} ic{EMMS}: Empty MMX State
  220. c EMMS                          ; 0F 77                [PENT,MMX]
  221. c{EMMS} sets the FPU tag word (marking which floating-point
  222. registers are available) to all ones, meaning all registers are
  223. available for the FPU to use. It should be used after executing MMX
  224. instructions and before executing any subsequent floating-point
  225. operations.
  226. H{insENTER} ic{ENTER}: Create Stack Frame
  227. c ENTER imm,imm                 ; C8 iw ib             [186]
  228. c{ENTER} constructs a stack frame for a high-level language
  229. procedure call. The first operand (the c{iw} in the opcode
  230. definition above refers to the first operand) gives the amount of
  231. stack space to allocate for local variables; the second (the c{ib}
  232. above) gives the nesting level of the procedure (for languages like
  233. Pascal, with nested procedures).
  234. The function of c{ENTER}, with a nesting level of zero, is
  235. equivalent to
  236. c           PUSH EBP            ; or PUSH BP         in 16 bits
  237. c           MOV EBP,ESP         ; or MOV BP,SP       in 16 bits
  238. c           SUB ESP,operand1    ; or SUB SP,operand1 in 16 bits
  239. This creates a stack frame with the procedure parameters accessible
  240. upwards from c{EBP}, and local variables accessible downwards from
  241. c{EBP}.
  242. With a nesting level of one, the stack frame created is 4 (or 2)
  243. bytes bigger, and the value of the final frame pointer c{EBP} is
  244. accessible in memory at c{[EBP-4]}.
  245. This allows c{ENTER}, when called with a nesting level of two, to
  246. look at the stack frame described by the e{previous} value of
  247. c{EBP}, find the frame pointer at offset -4 from that, and push it
  248. along with its new frame pointer, so that when a level-two procedure
  249. is called from within a level-one procedure, c{[EBP-4]} holds the
  250. frame pointer of the most recent level-one procedure call and
  251. c{[EBP-8]} holds that of the most recent level-two call. And so on,
  252. for nesting levels up to 31.
  253. Stack frames created by c{ENTER} can be destroyed by the c{LEAVE}
  254. instruction: see k{insLEAVE}.
  255. H{insF2XM1} ic{F2XM1}: Calculate 2**X-1
  256. c F2XM1                         ; D9 F0                [8086,FPU]
  257. c{F2XM1} raises 2 to the power of c{ST0}, subtracts one, and
  258. stores the result back into c{ST0}. The initial contents of c{ST0}
  259. must be a number in the range -1 to +1.
  260. H{insFABS} ic{FABS}: Floating-Point Absolute Value
  261. c FABS                          ; D9 E1                [8086,FPU]
  262. c{FABS} computes the absolute value of c{ST0}, storing the result
  263. back in c{ST0}.
  264. H{insFADD} ic{FADD}, ic{FADDP}: Floating-Point Addition
  265. c FADD mem32                    ; D8 /0                [8086,FPU]
  266. c FADD mem64                    ; DC /0                [8086,FPU]
  267. c FADD fpureg                   ; D8 C0+r              [8086,FPU]
  268. c FADD ST0,fpureg               ; D8 C0+r              [8086,FPU]
  269. c FADD TO fpureg                ; DC C0+r              [8086,FPU]
  270. c FADD fpureg,ST0               ; DC C0+r              [8086,FPU]
  271. c FADDP fpureg                  ; DE C0+r              [8086,FPU]
  272. c FADDP fpureg,ST0              ; DE C0+r              [8086,FPU]
  273. c{FADD}, given one operand, adds the operand to c{ST0} and stores
  274. the result back in c{ST0}. If the operand has the c{TO} modifier,
  275. the result is stored in the register given rather than in c{ST0}.
  276. c{FADDP} performs the same function as c{FADD TO}, but pops the
  277. register stack after storing the result.
  278. The given two-operand forms are synonyms for the one-operand forms.
  279. H{insFBLD} ic{FBLD}, ic{FBSTP}: BCD Floating-Point Load and Store
  280. c FBLD mem80                    ; DF /4                [8086,FPU]
  281. c FBSTP mem80                   ; DF /6                [8086,FPU]
  282. c{FBLD} loads an 80-bit (ten-byte) packed binary-coded decimal
  283. number from the given memory address, converts it to a real, and
  284. pushes it on the register stack. c{FBSTP} stores the value of
  285. c{ST0}, in packed BCD, at the given address and then pops the
  286. register stack.
  287. H{insFCHS} ic{FCHS}: Floating-Point Change Sign
  288. c FCHS                          ; D9 E0                [8086,FPU]
  289. c{FCHS} negates the number in c{ST0}: negative numbers become
  290. positive, and vice versa.
  291. H{insFCLEX} ic{FCLEX}, {FNCLEX}: Clear Floating-Point Exceptions
  292. c FCLEX                         ; 9B DB E2             [8086,FPU]
  293. c FNCLEX                        ; DB E2                [8086,FPU]
  294. c{FCLEX} clears any floating-point exceptions which may be pending.
  295. c{FNCLEX} does the same thing but doesn't wait for previous
  296. floating-point operations (including the e{handling} of pending
  297. exceptions) to finish first.
  298. H{insFCMOVB} ic{FCMOVcc}: Floating-Point Conditional Move
  299. c FCMOVB fpureg                 ; DA C0+r              [P6,FPU]
  300. c FCMOVB ST0,fpureg             ; DA C0+r              [P6,FPU]
  301. c FCMOVBE fpureg                ; DA D0+r              [P6,FPU]
  302. c FCMOVBE ST0,fpureg            ; DA D0+r              [P6,FPU]
  303. c FCMOVE fpureg                 ; DA C8+r              [P6,FPU]
  304. c FCMOVE ST0,fpureg             ; DA C8+r              [P6,FPU]
  305. c FCMOVNB fpureg                ; DB C0+r              [P6,FPU]
  306. c FCMOVNB ST0,fpureg            ; DB C0+r              [P6,FPU]
  307. c FCMOVNBE fpureg               ; DB D0+r              [P6,FPU]
  308. c FCMOVNBE ST0,fpureg           ; DB D0+r              [P6,FPU]
  309. c FCMOVNE fpureg                ; DB C8+r              [P6,FPU]
  310. c FCMOVNE ST0,fpureg            ; DB C8+r              [P6,FPU]
  311. c FCMOVNU fpureg                ; DB D8+r              [P6,FPU]
  312. c FCMOVNU ST0,fpureg            ; DB D8+r              [P6,FPU]
  313. c FCMOVU fpureg                 ; DA D8+r              [P6,FPU]
  314. c FCMOVU ST0,fpureg             ; DA D8+r              [P6,FPU]
  315. The c{FCMOV} instructions perform conditional move operations: each
  316. of them moves the contents of the given register into c{ST0} if its
  317. condition is satisfied, and does nothing if not.
  318. The conditions are not the same as the standard condition codes used
  319. with conditional jump instructions. The conditions c{B}, c{BE},
  320. c{NB}, c{NBE}, c{E} and c{NE} are exactly as normal, but none of
  321. the other standard ones are supported. Instead, the condition c{U}
  322. and its counterpart c{NU} are provided; the c{U} condition is
  323. satisfied if the last two floating-point numbers compared were
  324. e{unordered}, i.e. they were not equal but neither one could be
  325. said to be greater than the other, for example if they were NaNs.
  326. (The flag state which signals this is the setting of the parity
  327. flag: so the c{U} condition is notionally equivalent to c{PE}, and
  328. c{NU} is equivalent to c{PO}.)
  329. The c{FCMOV} conditions test the main processor's status flags, not
  330. the FPU status flags, so using c{FCMOV} directly after c{FCOM}
  331. will not work. Instead, you should either use c{FCOMI} which writes
  332. directly to the main CPU flags word, or use c{FSTSW} to extract the
  333. FPU flags.
  334. Although the c{FCMOV} instructions are flagged c{P6} above, they
  335. may not be supported by all Pentium Pro processors; the c{CPUID}
  336. instruction (k{insCPUID}) will return a bit which indicates whether
  337. conditional moves are supported.
  338. H{insFCOM} ic{FCOM}, ic{FCOMP}, ic{FCOMPP}, ic{FCOMI}, ic{FCOMIP}: Floating-Point Compare
  339. c FCOM mem32                    ; D8 /2                [8086,FPU]
  340. c FCOM mem64                    ; DC /2                [8086,FPU]
  341. c FCOM fpureg                   ; D8 D0+r              [8086,FPU]
  342. c FCOM ST0,fpureg               ; D8 D0+r              [8086,FPU]
  343. c FCOMP mem32                   ; D8 /3                [8086,FPU]
  344. c FCOMP mem64                   ; DC /3                [8086,FPU]
  345. c FCOMP fpureg                  ; D8 D8+r              [8086,FPU]
  346. c FCOMP ST0,fpureg              ; D8 D8+r              [8086,FPU]
  347. c FCOMPP                        ; DE D9                [8086,FPU]
  348. c FCOMI fpureg                  ; DB F0+r              [P6,FPU]
  349. c FCOMI ST0,fpureg              ; DB F0+r              [P6,FPU]
  350. c FCOMIP fpureg                 ; DF F0+r              [P6,FPU]
  351. c FCOMIP ST0,fpureg             ; DF F0+r              [P6,FPU]
  352. c{FCOM} compares c{ST0} with the given operand, and sets the FPU
  353. flags accordingly. c{ST0} is treated as the left-hand side of the
  354. comparison, so that the carry flag is set (for a `less-than' result)
  355. if c{ST0} is less than the given operand.
  356. c{FCOMP} does the same as c{FCOM}, but pops the register stack
  357. afterwards. c{FCOMPP} compares c{ST0} with c{ST1} and then pops
  358. the register stack twice.
  359. c{FCOMI} and c{FCOMIP} work like the corresponding forms of
  360. c{FCOM} and c{FCOMP}, but write their results directly to the CPU
  361. flags register rather than the FPU status word, so they can be
  362. immediately followed by conditional jump or conditional move
  363. instructions.
  364. The c{FCOM} instructions differ from the c{FUCOM} instructions
  365. (k{insFUCOM}) only in the way they handle quiet NaNs: c{FUCOM}
  366. will handle them silently and set the condition code flags to an
  367. `unordered' result, whereas c{FCOM} will generate an exception.
  368. H{insFCOS} ic{FCOS}: Cosine
  369. c FCOS                          ; D9 FF                [386,FPU]
  370. c{FCOS} computes the cosine of c{ST0} (in radians), and stores the
  371. result in c{ST0}. See also c{FSINCOS} (k{insFSIN}).
  372. H{insFDECSTP} ic{FDECSTP}: Decrement Floating-Point Stack Pointer
  373. c FDECSTP                       ; D9 F6                [8086,FPU]
  374. c{FDECSTP} decrements the `top' field in the floating-point status
  375. word. This has the effect of rotating the FPU register stack by one,
  376. as if the contents of c{ST7} had been pushed on the stack. See also
  377. c{FINCSTP} (k{insFINCSTP}).
  378. H{insFDISI} ic{FxDISI}, ic{FxENI}: Disable and Enable Floating-Point Interrupts
  379. c FDISI                         ; 9B DB E1             [8086,FPU]
  380. c FNDISI                        ; DB E1                [8086,FPU]
  381. c FENI                          ; 9B DB E0             [8086,FPU]
  382. c FNENI                         ; DB E0                [8086,FPU]
  383. c{FDISI} and c{FENI} disable and enable floating-point interrupts.
  384. These instructions are only meaningful on original 8087 processors:
  385. the 287 and above treat them as no-operation instructions.
  386. c{FNDISI} and c{FNENI} do the same thing as c{FDISI} and c{FENI}
  387. respectively, but without waiting for the floating-point processor
  388. to finish what it was doing first.
  389. H{insFDIV} ic{FDIV}, ic{FDIVP}, ic{FDIVR}, ic{FDIVRP}: Floating-Point Division
  390. c FDIV mem32                    ; D8 /6                [8086,FPU]
  391. c FDIV mem64                    ; DC /6                [8086,FPU]
  392. c FDIV fpureg                   ; D8 F0+r              [8086,FPU]
  393. c FDIV ST0,fpureg               ; D8 F0+r              [8086,FPU]
  394. c FDIV TO fpureg                ; DC F8+r              [8086,FPU]
  395. c FDIV fpureg,ST0               ; DC F8+r              [8086,FPU]
  396. c FDIVR mem32                   ; D8 /0                [8086,FPU]
  397. c FDIVR mem64                   ; DC /0                [8086,FPU]
  398. c FDIVR fpureg                  ; D8 F8+r              [8086,FPU]
  399. c FDIVR ST0,fpureg              ; D8 F8+r              [8086,FPU]
  400. c FDIVR TO fpureg               ; DC F0+r              [8086,FPU]
  401. c FDIVR fpureg,ST0              ; DC F0+r              [8086,FPU]
  402. c FDIVP fpureg                  ; DE F8+r              [8086,FPU]
  403. c FDIVP fpureg,ST0              ; DE F8+r              [8086,FPU]
  404. c FDIVRP fpureg                 ; DE F0+r              [8086,FPU]
  405. c FDIVRP fpureg,ST0             ; DE F0+r              [8086,FPU]
  406. c{FDIV} divides c{ST0} by the given operand and stores the result
  407. back in c{ST0}, unless the c{TO} qualifier is given, in which case
  408. it divides the given operand by c{ST0} and stores the result in the
  409. operand.
  410. c{FDIVR} does the same thing, but does the division the other way
  411. up: so if c{TO} is not given, it divides the given operand by
  412. c{ST0} and stores the result in c{ST0}, whereas if c{TO} is given
  413. it divides c{ST0} by its operand and stores the result in the
  414. operand.
  415. c{FDIVP} operates like c{FDIV TO}, but pops the register stack
  416. once it has finished. c{FDIVRP} operates like c{FDIVR TO}, but
  417. pops the register stack once it has finished.
  418. H{insFFREE} ic{FFREE}: Flag Floating-Point Register as Unused
  419. c FFREE fpureg                  ; DD C0+r              [8086,FPU]
  420. c{FFREE} marks the given register as being empty.
  421. H{insFIADD} ic{FIADD}: Floating-Point/Integer Addition
  422. c FIADD mem16                   ; DE /0                [8086,FPU]
  423. c FIADD mem32                   ; DA /0                [8086,FPU]
  424. c{FIADD} adds the 16-bit or 32-bit integer stored in the given
  425. memory location to c{ST0}, storing the result in c{ST0}.
  426. H{insFICOM} ic{FICOM}, ic{FICOMP}: Floating-Point/Integer Compare
  427. c FICOM mem16                   ; DE /2                [8086,FPU]
  428. c FICOM mem32                   ; DA /2                [8086,FPU]
  429. c FICOMP mem16                  ; DE /3                [8086,FPU]
  430. c FICOMP mem32                  ; DA /3                [8086,FPU]
  431. c{FICOM} compares c{ST0} with the 16-bit or 32-bit integer stored
  432. in the given memory location, and sets the FPU flags accordingly.
  433. c{FICOMP} does the same, but pops the register stack afterwards.
  434. H{insFIDIV} ic{FIDIV}, ic{FIDIVR}: Floating-Point/Integer Division
  435. c FIDIV mem16                   ; DE /6                [8086,FPU]
  436. c FIDIV mem32                   ; DA /6                [8086,FPU]
  437. c FIDIVR mem16                  ; DE /0                [8086,FPU]
  438. c FIDIVR mem32                  ; DA /0                [8086,FPU]
  439. c{FIDIV} divides c{ST0} by the 16-bit or 32-bit integer stored in
  440. the given memory location, and stores the result in c{ST0}.
  441. c{FIDIVR} does the division the other way up: it divides the
  442. integer by c{ST0}, but still stores the result in c{ST0}.
  443. H{insFILD} ic{FILD}, ic{FIST}, ic{FISTP}: Floating-Point/Integer Conversion
  444. c FILD mem16                    ; DF /0                [8086,FPU]
  445. c FILD mem32                    ; DB /0                [8086,FPU]
  446. c FILD mem64                    ; DF /5                [8086,FPU]
  447. c FIST mem16                    ; DF /2                [8086,FPU]
  448. c FIST mem32                    ; DB /2                [8086,FPU]
  449. c FISTP mem16                   ; DF /3                [8086,FPU]
  450. c FISTP mem32                   ; DB /3                [8086,FPU]
  451. c FISTP mem64                   ; DF /0                [8086,FPU]
  452. c{FILD} loads an integer out of a memory location, converts it to a
  453. real, and pushes it on the FPU register stack. c{FIST} converts
  454. c{ST0} to an integer and stores that in memory; c{FISTP} does the
  455. same as c{FIST}, but pops the register stack afterwards.
  456. H{insFIMUL} ic{FIMUL}: Floating-Point/Integer Multiplication
  457. c FIMUL mem16                   ; DE /1                [8086,FPU]
  458. c FIMUL mem32                   ; DA /1                [8086,FPU]
  459. c{FIMUL} multiplies c{ST0} by the 16-bit or 32-bit integer stored
  460. in the given memory location, and stores the result in c{ST0}.
  461. H{insFINCSTP} ic{FINCSTP}: Increment Floating-Point Stack Pointer
  462. c FINCSTP                       ; D9 F7                [8086,FPU]
  463. c{FINCSTP} increments the `top' field in the floating-point status
  464. word. This has the effect of rotating the FPU register stack by one,
  465. as if the register stack had been popped; however, unlike the
  466. popping of the stack performed by many FPU instructions, it does not
  467. flag the new c{ST7} (previously c{ST0}) as empty. See also
  468. c{FDECSTP} (k{insFDECSTP}).
  469. H{insFINIT} ic{FINIT}, ic{FNINIT}: Initialise Floating-Point Unit
  470. c FINIT                         ; 9B DB E3             [8086,FPU]
  471. c FNINIT                        ; DB E3                [8086,FPU]
  472. c{FINIT} initialises the FPU to its default state. It flags all
  473. registers as empty, though it does not actually change their values.
  474. c{FNINIT} does the same, without first waiting for pending
  475. exceptions to clear.
  476. H{insFISUB} ic{FISUB}: Floating-Point/Integer Subtraction
  477. c FISUB mem16                   ; DE /4                [8086,FPU]
  478. c FISUB mem32                   ; DA /4                [8086,FPU]
  479. c FISUBR mem16                  ; DE /5                [8086,FPU]
  480. c FISUBR mem32                  ; DA /5                [8086,FPU]
  481. c{FISUB} subtracts the 16-bit or 32-bit integer stored in the given
  482. memory location from c{ST0}, and stores the result in c{ST0}.
  483. c{FISUBR} does the subtraction the other way round, i.e. it
  484. subtracts c{ST0} from the given integer, but still stores the
  485. result in c{ST0}.
  486. H{insFLD} ic{FLD}: Floating-Point Load
  487. c FLD mem32                     ; D9 /0                [8086,FPU]
  488. c FLD mem64                     ; DD /0                [8086,FPU]
  489. c FLD mem80                     ; DB /5                [8086,FPU]
  490. c FLD fpureg                    ; D9 C0+r              [8086,FPU]
  491. c{FLD} loads a floating-point value out of the given register or
  492. memory location, and pushes it on the FPU register stack.
  493. H{insFLD1} ic{FLDxx}: Floating-Point Load Constants
  494. c FLD1                          ; D9 E8                [8086,FPU]
  495. c FLDL2E                        ; D9 EA                [8086,FPU]
  496. c FLDL2T                        ; D9 E9                [8086,FPU]
  497. c FLDLG2                        ; D9 EC                [8086,FPU]
  498. c FLDLN2                        ; D9 ED                [8086,FPU]
  499. c FLDPI                         ; D9 EB                [8086,FPU]
  500. c FLDZ                          ; D9 EE                [8086,FPU]
  501. These instructions push specific standard constants on the FPU
  502. register stack. c{FLD1} pushes the value 1; c{FLDL2E} pushes the
  503. base-2 logarithm of e; c{FLDL2T} pushes the base-2 log of 10;
  504. c{FLDLG2} pushes the base-10 log of 2; c{FLDLN2} pushes the base-e
  505. log of 2; c{FLDPI} pushes pi; and c{FLDZ} pushes zero.
  506. H{insFLDCW} ic{FLDCW}: Load Floating-Point Control Word
  507. c FLDCW mem16                   ; D9 /5                [8086,FPU]
  508. c{FLDCW} loads a 16-bit value out of memory and stores it into the
  509. FPU control word (governing things like the rounding mode, the
  510. precision, and the exception masks). See also c{FSTCW}
  511. (k{insFSTCW}).
  512. H{insFLDENV} ic{FLDENV}: Load Floating-Point Environment
  513. c FLDENV mem                    ; D9 /4                [8086,FPU]
  514. c{FLDENV} loads the FPU operating environment (control word, status
  515. word, tag word, instruction pointer, data pointer and last opcode)
  516. from memory. The memory area is 14 or 28 bytes long, depending on
  517. the CPU mode at the time. See also c{FSTENV} (k{insFSTENV}).
  518. H{insFMUL} ic{FMUL}, ic{FMULP}: Floating-Point Multiply
  519. c FMUL mem32                    ; D8 /1                [8086,FPU]
  520. c FMUL mem64                    ; DC /1                [8086,FPU]
  521. c FMUL fpureg                   ; D8 C8+r              [8086,FPU]
  522. c FMUL ST0,fpureg               ; D8 C8+r              [8086,FPU]
  523. c FMUL TO fpureg                ; DC C8+r              [8086,FPU]
  524. c FMUL fpureg,ST0               ; DC C8+r              [8086,FPU]
  525. c FMULP fpureg                  ; DE C8+r              [8086,FPU]
  526. c FMULP fpureg,ST0              ; DE C8+r              [8086,FPU]
  527. c{FMUL} multiplies c{ST0} by the given operand, and stores the
  528. result in c{ST0}, unless the c{TO} qualifier is used in which case
  529. it stores the result in the operand. c{FMULP} performs the same
  530. operation as c{FMUL TO}, and then pops the register stack.
  531. H{insFNOP} ic{FNOP}: Floating-Point No Operation
  532. c FNOP                          ; D9 D0                [8086,FPU]
  533. c{FNOP} does nothing.
  534. H{insFPATAN} ic{FPATAN}, ic{FPTAN}: Arctangent and Tangent
  535. c FPATAN                        ; D9 F3                [8086,FPU]
  536. c FPTAN                         ; D9 F2                [8086,FPU]
  537. c{FPATAN} computes the arctangent, in radians, of the result of
  538. dividing c{ST1} by c{ST0}, stores the result in c{ST1}, and pops
  539. the register stack. It works like the C c{atan2} function, in that
  540. changing the sign of both c{ST0} and c{ST1} changes the output
  541. value by pi (so it performs true rectangular-to-polar coordinate
  542. conversion, with c{ST1} being the Y coordinate and c{ST0} being
  543. the X coordinate, not merely an arctangent).
  544. c{FPTAN} computes the tangent of the value in c{ST0} (in radians),
  545. and stores the result back into c{ST0}.
  546. H{insFPREM} ic{FPREM}, ic{FPREM1}: Floating-Point Partial Remainder
  547. c FPREM                         ; D9 F8                [8086,FPU]
  548. c FPREM1                        ; D9 F5                [386,FPU]
  549. These instructions both produce the remainder obtained by dividing
  550. c{ST0} by c{ST1}. This is calculated, notionally, by dividing
  551. c{ST0} by c{ST1}, rounding the result to an integer, multiplying
  552. by c{ST1} again, and computing the value which would need to be
  553. added back on to the result to get back to the original value in
  554. c{ST0}.
  555. The two instructions differ in the way the notional round-to-integer
  556. operation is performed. c{FPREM} does it by rounding towards zero,
  557. so that the remainder it returns always has the same sign as the
  558. original value in c{ST0}; c{FPREM1} does it by rounding to the
  559. nearest integer, so that the remainder always has at most half the
  560. magnitude of c{ST1}.
  561. Both instructions calculate e{partial} remainders, meaning that
  562. they may not manage to provide the final result, but might leave
  563. intermediate results in c{ST0} instead. If this happens, they will
  564. set the C2 flag in the FPU status word; therefore, to calculate a
  565. remainder, you should repeatedly execute c{FPREM} or c{FPREM1}
  566. until C2 becomes clear.
  567. H{insFRNDINT} ic{FRNDINT}: Floating-Point Round to Integer
  568. c FRNDINT                       ; D9 FC                [8086,FPU]
  569. c{FRNDINT} rounds the contents of c{ST0} to an integer, according
  570. to the current rounding mode set in the FPU control word, and stores
  571. the result back in c{ST0}.
  572. H{insFRSTOR} ic{FSAVE}, ic{FRSTOR}: Save/Restore Floating-Point State
  573. c FSAVE mem                     ; 9B DD /6             [8086,FPU]
  574. c FNSAVE mem                    ; DD /6                [8086,FPU]
  575. c FRSTOR mem                    ; DD /4                [8086,FPU]
  576. c{FSAVE} saves the entire floating-point unit state, including all
  577. the information saved by c{FSTENV} (k{insFSTENV}) plus the
  578. contents of all the registers, to a 94 or 108 byte area of memory
  579. (depending on the CPU mode). c{FRSTOR} restores the floating-point
  580. state from the same area of memory.
  581. c{FNSAVE} does the same as c{FSAVE}, without first waiting for
  582. pending floating-point exceptions to clear.
  583. H{insFSCALE} ic{FSCALE}: Scale Floating-Point Value by Power of Two
  584. c FSCALE                        ; D9 FD                [8086,FPU]
  585. c{FSCALE} scales a number by a power of two: it rounds c{ST1}
  586. towards zero to obtain an integer, then multiplies c{ST0} by two to
  587. the power of that integer, and stores the result in c{ST0}.
  588. H{insFSETPM} ic{FSETPM}: Set Protected Mode
  589. c FSETPM                        ; DB E4                [286,FPU]
  590. This instruction initalises protected mode on the 287 floating-point
  591. coprocessor. It is only meaningful on that processor: the 387 and
  592. above treat the instruction as a no-operation.
  593. H{insFSIN} ic{FSIN}, ic{FSINCOS}: Sine and Cosine
  594. c FSIN                          ; D9 FE                [386,FPU]
  595. c FSINCOS                       ; D9 FB                [386,FPU]
  596. c{FSIN} calculates the sine of c{ST0} (in radians) and stores the
  597. result in c{ST0}. c{FSINCOS} does the same, but then pushes the
  598. cosine of the same value on the register stack, so that the sine
  599. ends up in c{ST1} and the cosine in c{ST0}. c{FSINCOS} is faster
  600. than executing c{FSIN} and c{FCOS} (see k{insFCOS}) in
  601. succession.
  602. H{insFSQRT} ic{FSQRT}: Floating-Point Square Root
  603. c FSQRT                         ; D9 FA                [8086,FPU]
  604. c{FSQRT} calculates the square root of c{ST0} and stores the
  605. result in c{ST0}.
  606. H{insFST} ic{FST}, ic{FSTP}: Floating-Point Store
  607. c FST mem32                     ; D9 /2                [8086,FPU]
  608. c FST mem64                     ; DD /2                [8086,FPU]
  609. c FST fpureg                    ; DD D0+r              [8086,FPU]
  610. c FSTP mem32                    ; D9 /3                [8086,FPU]
  611. c FSTP mem64                    ; DD /3                [8086,FPU]
  612. c FSTP mem80                    ; DB /0                [8086,FPU]
  613. c FSTP fpureg                   ; DD D8+r              [8086,FPU]
  614. c{FST} stores the value in c{ST0} into the given memory location
  615. or other FPU register. c{FSTP} does the same, but then pops the
  616. register stack.
  617. H{insFSTCW} ic{FSTCW}: Store Floating-Point Control Word
  618. c FSTCW mem16                   ; 9B D9 /0             [8086,FPU]
  619. c FNSTCW mem16                  ; D9 /0                [8086,FPU]
  620. c{FSTCW} stores the FPU control word (governing things like the
  621. rounding mode, the precision, and the exception masks) into a 2-byte
  622. memory area. See also c{FLDCW} (k{insFLDCW}).
  623. c{FNSTCW} does the same thing as c{FSTCW}, without first waiting
  624. for pending floating-point exceptions to clear.
  625. H{insFSTENV} ic{FSTENV}: Store Floating-Point Environment
  626. c FSTENV mem                    ; 9B D9 /6             [8086,FPU]
  627. c FNSTENV mem                   ; D9 /6                [8086,FPU]
  628. c{FSTENV} stores the FPU operating environment (control word,
  629. status word, tag word, instruction pointer, data pointer and last
  630. opcode) into memory. The memory area is 14 or 28 bytes long,
  631. depending on the CPU mode at the time. See also c{FLDENV}
  632. (k{insFLDENV}).
  633. c{FNSTENV} does the same thing as c{FSTENV}, without first waiting
  634. for pending floating-point exceptions to clear.
  635. H{insFSTSW} ic{FSTSW}: Store Floating-Point Status Word
  636. c FSTSW mem16                   ; 9B DD /0             [8086,FPU]
  637. c FSTSW AX                      ; 9B DF E0             [286,FPU]
  638. c FNSTSW mem16                  ; DD /0                [8086,FPU]
  639. c FNSTSW AX                     ; DF E0                [286,FPU]
  640. c{FSTSW} stores the FPU status word into c{AX} or into a 2-byte
  641. memory area.
  642. c{FNSTSW} does the same thing as c{FSTSW}, without first waiting
  643. for pending floating-point exceptions to clear.
  644. H{insFSUB} ic{FSUB}, ic{FSUBP}, ic{FSUBR}, ic{FSUBRP}: Floating-Point Subtract
  645. c FSUB mem32                    ; D8 /4                [8086,FPU]
  646. c FSUB mem64                    ; DC /4                [8086,FPU]
  647. c FSUB fpureg                   ; D8 E0+r              [8086,FPU]
  648. c FSUB ST0,fpureg               ; D8 E0+r              [8086,FPU]
  649. c FSUB TO fpureg                ; DC E8+r              [8086,FPU]
  650. c FSUB fpureg,ST0               ; DC E8+r              [8086,FPU]
  651. c FSUBR mem32                   ; D8 /5                [8086,FPU]
  652. c FSUBR mem64                   ; DC /5                [8086,FPU]
  653. c FSUBR fpureg                  ; D8 E8+r              [8086,FPU]
  654. c FSUBR ST0,fpureg              ; D8 E8+r              [8086,FPU]
  655. c FSUBR TO fpureg               ; DC E0+r              [8086,FPU]
  656. c FSUBR fpureg,ST0              ; DC E0+r              [8086,FPU]
  657. c FSUBP fpureg                  ; DE E8+r              [8086,FPU]
  658. c FSUBP fpureg,ST0              ; DE E8+r              [8086,FPU]
  659. c FSUBRP fpureg                 ; DE E0+r              [8086,FPU]
  660. c FSUBRP fpureg,ST0             ; DE E0+r              [8086,FPU]
  661. c{FSUB} subtracts the given operand from c{ST0} and stores the
  662. result back in c{ST0}, unless the c{TO} qualifier is given, in
  663. which case it subtracts c{ST0} from the given operand and stores
  664. the result in the operand.
  665. c{FSUBR} does the same thing, but does the subtraction the other way
  666. up: so if c{TO} is not given, it subtracts c{ST0} from the given
  667. operand and stores the result in c{ST0}, whereas if c{TO} is given
  668. it subtracts its operand from c{ST0} and stores the result in the
  669. operand.
  670. c{FSUBP} operates like c{FSUB TO}, but pops the register stack
  671. once it has finished. c{FSUBRP} operates like c{FSUBR TO}, but
  672. pops the register stack once it has finished.
  673. H{insFTST} ic{FTST}: Test c{ST0} Against Zero
  674. c FTST                          ; D9 E4                [8086,FPU]
  675. c{FTST} compares c{ST0} with zero and sets the FPU flags
  676. accordingly. c{ST0} is treated as the left-hand side of the
  677. comparison, so that a `less-than' result is generated if c{ST0} is
  678. negative.
  679. H{insFUCOM} ic{FUCOMxx}: Floating-Point Unordered Compare
  680. c FUCOM fpureg                  ; DD E0+r              [386,FPU]
  681. c FUCOM ST0,fpureg              ; DD E0+r              [386,FPU]
  682. c FUCOMP fpureg                 ; DD E8+r              [386,FPU]
  683. c FUCOMP ST0,fpureg             ; DD E8+r              [386,FPU]
  684. c FUCOMPP                       ; DA E9                [386,FPU]
  685. c FUCOMI fpureg                 ; DB E8+r              [P6,FPU]
  686. c FUCOMI ST0,fpureg             ; DB E8+r              [P6,FPU]
  687. c FUCOMIP fpureg                ; DF E8+r              [P6,FPU]
  688. c FUCOMIP ST0,fpureg            ; DF E8+r              [P6,FPU]
  689. c{FUCOM} compares c{ST0} with the given operand, and sets the FPU
  690. flags accordingly. c{ST0} is treated as the left-hand side of the
  691. comparison, so that the carry flag is set (for a `less-than' result)
  692. if c{ST0} is less than the given operand.
  693. c{FUCOMP} does the same as c{FUCOM}, but pops the register stack
  694. afterwards. c{FUCOMPP} compares c{ST0} with c{ST1} and then pops
  695. the register stack twice.
  696. c{FUCOMI} and c{FUCOMIP} work like the corresponding forms of
  697. c{FUCOM} and c{FUCOMP}, but write their results directly to the CPU
  698. flags register rather than the FPU status word, so they can be
  699. immediately followed by conditional jump or conditional move
  700. instructions.
  701. The c{FUCOM} instructions differ from the c{FCOM} instructions
  702. (k{insFCOM}) only in the way they handle quiet NaNs: c{FUCOM} will
  703. handle them silently and set the condition code flags to an
  704. `unordered' result, whereas c{FCOM} will generate an exception.
  705. H{insFXAM} ic{FXAM}: Examine Class of Value in c{ST0}
  706. c FXAM                          ; D9 E5                [8086,FPU]
  707. c{FXAM} sets the FPU flags C3, C2 and C0 depending on the type of
  708. value stored in c{ST0}: 000 (respectively) for an unsupported
  709. format, 001 for a NaN, 010 for a normal finite number, 011 for an
  710. infinity, 100 for a zero, 101 for an empty register, and 110 for a
  711. denormal. It also sets the C1 flag to the sign of the number.
  712. H{insFXCH} ic{FXCH}: Floating-Point Exchange
  713. c FXCH                          ; D9 C9                [8086,FPU]
  714. c FXCH fpureg                   ; D9 C8+r              [8086,FPU]
  715. c FXCH fpureg,ST0               ; D9 C8+r              [8086,FPU]
  716. c FXCH ST0,fpureg               ; D9 C8+r              [8086,FPU]
  717. c{FXCH} exchanges c{ST0} with a given FPU register. The no-operand
  718. form exchanges c{ST0} with c{ST1}.
  719. H{insFXTRACT} ic{FXTRACT}: Extract Exponent and Significand
  720. c FXTRACT                       ; D9 F4                [8086,FPU]
  721. c{FXTRACT} separates the number in c{ST0} into its exponent and
  722. significand (mantissa), stores the exponent back into c{ST0}, and
  723. then pushes the significand on the register stack (so that the
  724. significand ends up in c{ST0}, and the exponent in c{ST1}).
  725. H{insFYL2X} ic{FYL2X}, ic{FYL2XP1}: Compute Y times Log2(X) or Log2(X+1)
  726. c FYL2X                         ; D9 F1                [8086,FPU]
  727. c FYL2XP1                       ; D9 F9                [8086,FPU]
  728. c{FYL2X} multiplies c{ST1} by the base-2 logarithm of c{ST0},
  729. stores the result in c{ST1}, and pops the register stack (so that
  730. the result ends up in c{ST0}). c{ST0} must be non-zero and
  731. positive.
  732. c{FYL2XP1} works the same way, but replacing the base-2 log of
  733. c{ST0} with that of c{ST0} plus one. This time, c{ST0} must have
  734. magnitude no greater than 1 minus half the square root of two.
  735. H{insHLT} ic{HLT}: Halt Processor
  736. c HLT                           ; F4                   [8086]
  737. c{HLT} puts the processor into a halted state, where it will
  738. perform no more operations until restarted by an interrupt or a
  739. reset.
  740. H{insIBTS} ic{IBTS}: Insert Bit String
  741. c IBTS r/m16,reg16              ; o16 0F A7 /r         [386,UNDOC]
  742. c IBTS r/m32,reg32              ; o32 0F A7 /r         [386,UNDOC]
  743. No clear documentation seems to be available for this instruction:
  744. the best I've been able to find reads `Takes a string of bits from
  745. the second operand and puts them in the first operand'. It is
  746. present only in early 386 processors, and conflicts with the opcodes
  747. for c{CMPXCHG486}. NASM supports it only for completeness. Its
  748. counterpart is c{XBTS} (see k{insXBTS}).
  749. H{insIDIV} ic{IDIV}: Signed Integer Divide
  750. c IDIV r/m8                     ; F6 /7                [8086]
  751. c IDIV r/m16                    ; o16 F7 /7            [8086]
  752. c IDIV r/m32                    ; o32 F7 /7            [386]
  753. c{IDIV} performs signed integer division. The explicit operand
  754. provided is the divisor; the dividend and destination operands are
  755. implicit, in the following way:
  756. b For c{IDIV r/m8}, c{AX} is divided by the given operand; the
  757. quotient is stored in c{AL} and the remainder in c{AH}.
  758. b For c{IDIV r/m16}, c{DX:AX} is divided by the given operand; the
  759. quotient is stored in c{AX} and the remainder in c{DX}.
  760. b For c{IDIV r/m32}, c{EDX:EAX} is divided by the given operand;
  761. the quotient is stored in c{EAX} and the remainder in c{EDX}.
  762. Unsigned integer division is performed by the c{DIV} instruction:
  763. see k{insDIV}.
  764. H{insIMUL} ic{IMUL}: Signed Integer Multiply
  765. c IMUL r/m8                     ; F6 /5                [8086]
  766. c IMUL r/m16                    ; o16 F7 /5            [8086]
  767. c IMUL r/m32                    ; o32 F7 /5            [386]
  768. c IMUL reg16,r/m16              ; o16 0F AF /r         [386]
  769. c IMUL reg32,r/m32              ; o32 0F AF /r         [386]
  770. c IMUL reg16,imm8               ; o16 6B /r ib         [286]
  771. c IMUL reg16,imm16              ; o16 69 /r iw         [286]
  772. c IMUL reg32,imm8               ; o32 6B /r ib         [386]
  773. c IMUL reg32,imm32              ; o32 69 /r id         [386]
  774. c IMUL reg16,r/m16,imm8         ; o16 6B /r ib         [286]
  775. c IMUL reg16,r/m16,imm16        ; o16 69 /r iw         [286]
  776. c IMUL reg32,r/m32,imm8         ; o32 6B /r ib         [386]
  777. c IMUL reg32,r/m32,imm32        ; o32 69 /r id         [386]
  778. c{IMUL} performs signed integer multiplication. For the
  779. single-operand form, the other operand and destination are implicit,
  780. in the following way:
  781. b For c{IMUL r/m8}, c{AL} is multiplied by the given operand; the
  782. product is stored in c{AX}.
  783. b For c{IMUL r/m16}, c{AX} is multiplied by the given operand;
  784. the product is stored in c{DX:AX}.
  785. b For c{IMUL r/m32}, c{EAX} is multiplied by the given operand;
  786. the product is stored in c{EDX:EAX}.
  787. The two-operand form multiplies its two operands and stores the
  788. result in the destination (first) operand. The three-operand form
  789. multiplies its last two operands and stores the result in the first
  790. operand.
  791. The two-operand form is in fact a shorthand for the three-operand
  792. form, as can be seen by examining the opcode descriptions: in the
  793. two-operand form, the code c{/r} takes both its register and
  794. c{r/m} parts from the same operand (the first one).
  795. In the forms with an 8-bit immediate operand and another longer
  796. source operand, the immediate operand is considered to be signed,
  797. and is sign-extended to the length of the other source operand. In
  798. these cases, the c{BYTE} qualifier is necessary to force NASM to
  799. generate this form of the instruction.
  800. Unsigned integer multiplication is performed by the c{MUL}
  801. instruction: see k{insMUL}.
  802. H{insIN} ic{IN}: Input from I/O Port
  803. c IN AL,imm8                    ; E4 ib                [8086]
  804. c IN AX,imm8                    ; o16 E5 ib            [8086]
  805. c IN EAX,imm8                   ; o32 E5 ib            [386]
  806. c IN AL,DX                      ; EC                   [8086]
  807. c IN AX,DX                      ; o16 ED               [8086]
  808. c IN EAX,DX                     ; o32 ED               [386]
  809. c{IN} reads a byte, word or doubleword from the specified I/O port,
  810. and stores it in the given destination register. The port number may
  811. be specified as an immediate value if it is between 0 and 255, and
  812. otherwise must be stored in c{DX}. See also c{OUT} (k{insOUT}).
  813. H{insINC} ic{INC}: Increment Integer
  814. c INC reg16                     ; o16 40+r             [8086]
  815. c INC reg32                     ; o32 40+r             [386]
  816. c INC r/m8                      ; FE /0                [8086]
  817. c INC r/m16                     ; o16 FF /0            [8086]
  818. c INC r/m32                     ; o32 FF /0            [386]
  819. c{INC} adds 1 to its operand. It does e{not} affect the carry
  820. flag: to affect the carry flag, use c{ADD something,1} (see
  821. k{insADD}). See also c{DEC} (k{insDEC}).
  822. H{insINSB} ic{INSB}, ic{INSW}, ic{INSD}: Input String from I/O Port
  823. c INSB                          ; 6C                   [186]
  824. c INSW                          ; o16 6D               [186]
  825. c INSD                          ; o32 6D               [386]
  826. c{INSB} inputs a byte from the I/O port specified in c{DX} and
  827. stores it at c{[ES:DI]} or c{[ES:EDI]}. It then increments or
  828. decrements (depending on the direction flag: increments if the flag
  829. is clear, decrements if it is set) c{DI} or c{EDI}.
  830. The register used is c{DI} if the address size is 16 bits, and
  831. c{EDI} if it is 32 bits. If you need to use an address size not
  832. equal to the current c{BITS} setting, you can use an explicit
  833. ic{a16} or ic{a32} prefix.
  834. Segment override prefixes have no effect for this instruction: the
  835. use of c{ES} for the load from c{[DI]} or c{[EDI]} cannot be
  836. overridden.
  837. c{INSW} and c{INSD} work in the same way, but they input a word or
  838. a doubleword instead of a byte, and increment or decrement the
  839. addressing register by 2 or 4 instead of 1.
  840. The c{REP} prefix may be used to repeat the instruction c{CX} (or
  841. c{ECX} - again, the address size chooses which) times.
  842. See also c{OUTSB}, c{OUTSW} and c{OUTSD} (k{insOUTSB}).
  843. H{insINT} ic{INT}: Software Interrupt
  844. c INT imm8                      ; CD ib                [8086]
  845. c{INT} causes a software interrupt through a specified vector
  846. number from 0 to 255.
  847. The code generated by the c{INT} instruction is always two bytes
  848. long: although there are short forms for some c{INT} instructions,
  849. NASM does not generate them when it sees the c{INT} mnemonic. In
  850. order to generate single-byte breakpoint instructions, use the
  851. c{INT3} or c{INT1} instructions (see k{insINT1}) instead.
  852. H{insINT1} ic{INT3}, ic{INT1}, ic{ICEBP}, ic{INT01}: Breakpoints
  853. c INT1                          ; F1                   [P6]
  854. c ICEBP                         ; F1                   [P6]
  855. c INT01                         ; F1                   [P6]
  856. c INT3                          ; CC                   [8086]
  857. c{INT1} and c{INT3} are short one-byte forms of the instructions
  858. c{INT 1} and c{INT 3} (see k{insINT}). They perform a similar
  859. function to their longer counterparts, but take up less code space.
  860. They are used as breakpoints by debuggers.
  861. c{INT1}, and its alternative synonyms c{INT01} and c{ICEBP}, is
  862. an instruction used by in-circuit emulators (ICEs). It is present,
  863. though not documented, on some processors down to the 286, but is
  864. only documented for the Pentium Pro. c{INT3} is the instruction
  865. normally used as a breakpoint by debuggers.
  866. c{INT3} is not precisely equivalent to c{INT 3}: the short form,
  867. since it is designed to be used as a breakpoint, bypasses the normal
  868. IOPL checks in virtual-8086 mode, and also does not go through
  869. interrupt redirection.
  870. H{insINTO} ic{INTO}: Interrupt if Overflow
  871. c INTO                          ; CE                   [8086]
  872. c{INTO} performs an c{INT 4} software interrupt (see k{insINT})
  873. if and only if the overflow flag is set.
  874. H{insINVD} ic{INVD}: Invalidate Internal Caches
  875. c INVD                          ; 0F 08                [486]
  876. c{INVD} invalidates and empties the processor's internal caches,
  877. and causes the processor to instruct external caches to do the same.
  878. It does not write the contents of the caches back to memory first:
  879. any modified data held in the caches will be lost. To write the data
  880. back first, use c{WBINVD} (k{insWBINVD}).
  881. H{insINVLPG} ic{INVLPG}: Invalidate TLB Entry
  882. c INVLPG mem                    ; 0F 01 /0             [486]
  883. c{INVLPG} invalidates the translation lookahead buffer (TLB) entry
  884. associated with the supplied memory address.
  885. H{insIRET} ic{IRET}, ic{IRETW}, ic{IRETD}: Return from Interrupt
  886. c IRET                          ; CF                   [8086]
  887. c IRETW                         ; o16 CF               [8086]
  888. c IRETD                         ; o32 CF               [386]
  889. c{IRET} returns from an interrupt (hardware or software) by means
  890. of popping c{IP} (or c{EIP}), c{CS} and the flags off the stack
  891. and then continuing execution from the new c{CS:IP}.
  892. c{IRETW} pops c{IP}, c{CS} and the flags as 2 bytes each, taking
  893. 6 bytes off the stack in total. c{IRETD} pops c{EIP} as 4 bytes,
  894. pops a further 4 bytes of which the top two are discarded and the
  895. bottom two go into c{CS}, and pops the flags as 4 bytes as well,
  896. taking 12 bytes off the stack.
  897. c{IRET} is a shorthand for either c{IRETW} or c{IRETD}, depending
  898. on the default c{BITS} setting at the time.
  899. H{insJCXZ} ic{JCXZ}, ic{JECXZ}: Jump if CX/ECX Zero
  900. c JCXZ imm                      ; o16 E3 rb            [8086]
  901. c JECXZ imm                     ; o32 E3 rb            [386]
  902. c{JCXZ} performs a short jump (with maximum range 128 bytes) if and
  903. only if the contents of the c{CX} register is 0. c{JECXZ} does the
  904. same thing, but with c{ECX}.
  905. H{insJMP} ic{JMP}: Jump
  906. c JMP imm                       ; E9 rw/rd             [8086]
  907. c JMP SHORT imm                 ; EB rb                [8086]
  908. c JMP imm:imm16                 ; o16 EA iw iw         [8086]
  909. c JMP imm:imm32                 ; o32 EA id iw         [386]
  910. c JMP FAR mem                   ; o16 FF /5            [8086]
  911. c JMP FAR mem                   ; o32 FF /5            [386]
  912. c JMP r/m16                     ; o16 FF /4            [8086]
  913. c JMP r/m32                     ; o32 FF /4            [386]
  914. c{JMP} jumps to a given address. The address may be specified as an
  915. absolute segment and offset, or as a relative jump within the
  916. current segment.
  917. c{JMP SHORT imm} has a maximum range of 128 bytes, since the
  918. displacement is specified as only 8 bits, but takes up less code
  919. space. NASM does not choose when to generate c{JMP SHORT} for you:
  920. you must explicitly code c{SHORT} every time you want a short jump.
  921. You can choose between the two immediate i{far jump} forms (c{JMP
  922. imm:imm}) by the use of the c{WORD} and c{DWORD} keywords: c{JMP
  923. WORD 0x1234:0x5678}) or c{JMP DWORD 0x1234:0x56789abc}.
  924. The c{JMP FAR mem} forms execute a far jump by loading the
  925. destination address out of memory. The address loaded consists of 16
  926. or 32 bits of offset (depending on the operand size), and 16 bits of
  927. segment. The operand size may be overridden using c{JMP WORD FAR
  928. mem} or c{JMP DWORD FAR mem}.
  929. The c{JMP r/m} forms execute a i{near jump} (within the same
  930. segment), loading the destination address out of memory or out of a
  931. register. The keyword c{NEAR} may be specified, for clarity, in
  932. these forms, but is not necessary. Again, operand size can be
  933. overridden using c{JMP WORD mem} or c{JMP DWORD mem}.
  934. As a convenience, NASM does not require you to jump to a far symbol
  935. by coding the cumbersome c{JMP SEG routine:routine}, but instead
  936. allows the easier synonym c{JMP FAR routine}.
  937. The c{CALL r/m} forms given above are near calls; NASM will accept
  938. the c{NEAR} keyword (e.g. c{CALL NEAR [address]}), even though it
  939. is not strictly necessary.
  940. H{insJcc} ic{Jcc}: Conditional Branch
  941. c Jcc imm                       ; 70+cc rb             [8086]
  942. c Jcc NEAR imm                  ; 0F 80+cc rw/rd       [386]
  943. The i{conditional jump} instructions execute a near (same segment)
  944. jump if and only if their conditions are satisfied. For example,
  945. c{JNZ} jumps only if the zero flag is not set.
  946. The ordinary form of the instructions has only a 128-byte range; the
  947. c{NEAR} form is a 386 extension to the instruction set, and can
  948. span the full size of a segment. NASM will not override your choice
  949. of jump instruction: if you want c{Jcc NEAR}, you have to use the
  950. c{NEAR} keyword.
  951. The c{SHORT} keyword is allowed on the first form of the
  952. instruction, for clarity, but is not necessary.
  953. H{insLAHF} ic{LAHF}: Load AH from Flags
  954. c LAHF                          ; 9F                   [8086]
  955. c{LAHF} sets the c{AH} register according to the contents of the
  956. low byte of the flags word. See also c{SAHF} (k{insSAHF}).
  957. H{insLAR} ic{LAR}: Load Access Rights
  958. c LAR reg16,r/m16               ; o16 0F 02 /r         [286,PRIV]
  959. c LAR reg32,r/m32               ; o32 0F 02 /r         [286,PRIV]
  960. c{LAR} takes the segment selector specified by its source (second)
  961. operand, finds the corresponding segment descriptor in the GDT or
  962. LDT, and loads the access-rights byte of the descriptor into its
  963. destination (first) operand.
  964. H{insLDS} ic{LDS}, ic{LES}, ic{LFS}, ic{LGS}, ic{LSS}: Load Far Pointer
  965. c LDS reg16,mem                 ; o16 C5 /r            [8086]
  966. c LDS reg32,mem                 ; o32 C5 /r            [8086]
  967. c LES reg16,mem                 ; o16 C4 /r            [8086]
  968. c LES reg32,mem                 ; o32 C4 /r            [8086]
  969. c LFS reg16,mem                 ; o16 0F B4 /r         [386]
  970. c LFS reg32,mem                 ; o32 0F B4 /r         [386]
  971. c LGS reg16,mem                 ; o16 0F B5 /r         [386]
  972. c LGS reg32,mem                 ; o32 0F B5 /r         [386]
  973. c LSS reg16,mem                 ; o16 0F B2 /r         [386]
  974. c LSS reg32,mem                 ; o32 0F B2 /r         [386]
  975. These instructions load an entire far pointer (16 or 32 bits of
  976. offset, plus 16 bits of segment) out of memory in one go. c{LDS},
  977. for example, loads 16 or 32 bits from the given memory address into
  978. the given register (depending on the size of the register), then
  979. loads the e{next} 16 bits from memory into c{DS}. c{LES},
  980. c{LFS}, c{LGS} and c{LSS} work in the same way but use the other
  981. segment registers.
  982. H{insLEA} ic{LEA}: Load Effective Address
  983. c LEA reg16,mem                 ; o16 8D /r            [8086]
  984. c LEA reg32,mem                 ; o32 8D /r            [8086]
  985. c{LEA}, despite its syntax, does not access memory. It calculates
  986. the effective address specified by its second operand as if it were
  987. going to load or store data from it, but instead it stores the
  988. calculated address into the register specified by its first operand.
  989. This can be used to perform quite complex calculations (e.g. c{LEA
  990. EAX,[EBX+ECX*4+100]}) in one instruction.
  991. c{LEA}, despite being a purely arithmetic instruction which
  992. accesses no memory, still requires square brackets around its second
  993. operand, as if it were a memory reference.
  994. H{insLEAVE} ic{LEAVE}: Destroy Stack Frame
  995. c LEAVE                         ; C9                   [186]
  996. c{LEAVE} destroys a stack frame of the form created by the
  997. c{ENTER} instruction (see k{insENTER}). It is functionally
  998. equivalent to c{MOV ESP,EBP} followed by c{POP EBP} (or c{MOV
  999. SP,BP} followed by c{POP BP} in 16-bit mode).
  1000. H{insLGDT} ic{LGDT}, ic{LIDT}, ic{LLDT}: Load Descriptor Tables
  1001. c LGDT mem                      ; 0F 01 /2             [286,PRIV]
  1002. c LIDT mem                      ; 0F 01 /3             [286,PRIV]
  1003. c LLDT r/m16                    ; 0F 00 /2             [286,PRIV]
  1004. c{LGDT} and c{LIDT} both take a 6-byte memory area as an operand:
  1005. they load a 32-bit linear address and a 16-bit size limit from that
  1006. area (in the opposite order) into the GDTR (global descriptor table
  1007. register) or IDTR (interrupt descriptor table register). These are
  1008. the only instructions which directly use e{linear} addresses,
  1009. rather than segment/offset pairs.
  1010. c{LLDT} takes a segment selector as an operand. The processor looks
  1011. up that selector in the GDT and stores the limit and base address
  1012. given there into the LDTR (local descriptor table register).
  1013. See also c{SGDT}, c{SIDT} and c{SLDT} (k{insSGDT}).
  1014. H{insLMSW} ic{LMSW}: Load/Store Machine Status Word
  1015. c LMSW r/m16                    ; 0F 01 /6             [286,PRIV]
  1016. c{LMSW} loads the bottom four bits of the source operand into the
  1017. bottom four bits of the c{CR0} control register (or the Machine
  1018. Status Word, on 286 processors). See also c{SMSW} (k{insSMSW}).
  1019. H{insLOADALL} ic{LOADALL}, ic{LOADALL286}: Load Processor State
  1020. c LOADALL                       ; 0F 07                [386,UNDOC]
  1021. c LOADALL286                    ; 0F 05                [286,UNDOC]
  1022. This instruction, in its two different-opcode forms, is apparently
  1023. supported on most 286 processors, some 386 and possibly some 486.
  1024. The opcode differs between the 286 and the 386.
  1025. The function of the instruction is to load all information relating
  1026. to the state of the processor out of a block of memory: on the 286,
  1027. this block is located implicitly at absolute address c{0x800}, and
  1028. on the 386 and 486 it is at c{[ES:EDI]}.
  1029. H{insLODSB} ic{LODSB}, ic{LODSW}, ic{LODSD}: Load from String
  1030. c LODSB                         ; AC                   [8086]
  1031. c LODSW                         ; o16 AD               [8086]
  1032. c LODSD                         ; o32 AD               [386]
  1033. c{LODSB} loads a byte from c{[DS:SI]} or c{[DS:ESI]} into c{AL}.
  1034. It then increments or decrements (depending on the direction flag:
  1035. increments if the flag is clear, decrements if it is set) c{SI} or
  1036. c{ESI}.
  1037. The register used is c{SI} if the address size is 16 bits, and
  1038. c{ESI} if it is 32 bits. If you need to use an address size not
  1039. equal to the current c{BITS} setting, you can use an explicit
  1040. ic{a16} or ic{a32} prefix.
  1041. The segment register used to load from c{[SI]} or c{[ESI]} can be
  1042. overridden by using a segment register name as a prefix (for
  1043. example, c{es lodsb}).
  1044. c{LODSW} and c{LODSD} work in the same way, but they load a
  1045. word or a doubleword instead of a byte, and increment or decrement
  1046. the addressing registers by 2 or 4 instead of 1.
  1047. H{insLOOP} ic{LOOP}, ic{LOOPE}, ic{LOOPZ}, ic{LOOPNE}, ic{LOOPNZ}: Loop with Counter
  1048. c LOOP imm                      ; E2 rb                [8086]
  1049. c LOOP imm,CX                   ; a16 E2 rb            [8086]
  1050. c LOOP imm,ECX                  ; a32 E2 rb            [386]
  1051. c LOOPE imm                     ; E1 rb                [8086]
  1052. c LOOPE imm,CX                  ; a16 E1 rb            [8086]
  1053. c LOOPE imm,ECX                 ; a32 E1 rb            [386]
  1054. c LOOPZ imm                     ; E1 rb                [8086]
  1055. c LOOPZ imm,CX                  ; a16 E1 rb            [8086]
  1056. c LOOPZ imm,ECX                 ; a32 E1 rb            [386]
  1057. c LOOPNE imm                    ; E0 rb                [8086]
  1058. c LOOPNE imm,CX                 ; a16 E0 rb            [8086]
  1059. c LOOPNE imm,ECX                ; a32 E0 rb            [386]
  1060. c LOOPNZ imm                    ; E0 rb                [8086]
  1061. c LOOPNZ imm,CX                 ; a16 E0 rb            [8086]
  1062. c LOOPNZ imm,ECX                ; a32 E0 rb            [386]
  1063. c{LOOP} decrements its counter register (either c{CX} or c{ECX} -
  1064. if one is not specified explicitly, the c{BITS} setting dictates
  1065. which is used) by one, and if the counter does not become zero as a
  1066. result of this operation, it jumps to the given label. The jump has
  1067. a range of 128 bytes.
  1068. c{LOOPE} (or its synonym c{LOOPZ}) adds the additional condition
  1069. that it only jumps if the counter is nonzero e{and} the zero flag
  1070. is set. Similarly, c{LOOPNE} (and c{LOOPNZ}) jumps only if the
  1071. counter is nonzero and the zero flag is clear.
  1072. H{insLSL} ic{LSL}: Load Segment Limit
  1073. c LSL reg16,r/m16               ; o16 0F 03 /r         [286,PRIV]
  1074. c LSL reg32,r/m32               ; o32 0F 03 /r         [286,PRIV]
  1075. c{LSL} is given a segment selector in its source (second) operand;
  1076. it computes the segment limit value by loading the segment limit
  1077. field from the associated segment descriptor in the GDT or LDT.
  1078. (This involves shifting left by 12 bits if the segment limit is
  1079. page-granular, and not if it is byte-granular; so you end up with a
  1080. byte limit in either case.) The segment limit obtained is then
  1081. loaded into the destination (first) operand.
  1082. H{insLTR} ic{LTR}: Load Task Register
  1083. c LTR r/m16                     ; 0F 00 /3             [286,PRIV]
  1084. c{LTR} looks up the segment base and limit in the GDT or LDT
  1085. descriptor specified by the segment selector given as its operand,
  1086. and loads them into the Task Register.
  1087. H{insMOV} ic{MOV}: Move Data
  1088. c MOV r/m8,reg8                 ; 88 /r                [8086]
  1089. c MOV r/m16,reg16               ; o16 89 /r            [8086]
  1090. c MOV r/m32,reg32               ; o32 89 /r            [386]
  1091. c MOV reg8,r/m8                 ; 8A /r                [8086]
  1092. c MOV reg16,r/m16               ; o16 8B /r            [8086]
  1093. c MOV reg32,r/m32               ; o32 8B /r            [386]
  1094. c MOV reg8,imm8                 ; B0+r ib              [8086]
  1095. c MOV reg16,imm16               ; o16 B8+r iw          [8086]
  1096. c MOV reg32,imm32               ; o32 B8+r id          [386]
  1097. c MOV r/m8,imm8                 ; C6 /0 ib             [8086]
  1098. c MOV r/m16,imm16               ; o16 C7 /0 iw         [8086]
  1099. c MOV r/m32,imm32               ; o32 C7 /0 id         [386]
  1100. c MOV AL,memoffs8               ; A0 ow/od             [8086]
  1101. c MOV AX,memoffs16              ; o16 A1 ow/od         [8086]
  1102. c MOV EAX,memoffs32             ; o32 A1 ow/od         [386]
  1103. c MOV memoffs8,AL               ; A2 ow/od             [8086]
  1104. c MOV memoffs16,AX              ; o16 A3 ow/od         [8086]
  1105. c MOV memoffs32,EAX             ; o32 A3 ow/od         [386]
  1106. c MOV r/m16,segreg              ; o16 8C /r            [8086]
  1107. c MOV r/m32,segreg              ; o32 8C /r            [386]
  1108. c MOV segreg,r/m16              ; o16 8E /r            [8086]
  1109. c MOV segreg,r/m32              ; o32 8E /r            [386]
  1110. c MOV reg32,CR0/2/3/4           ; 0F 20 /r             [386]
  1111. c MOV reg32,DR0/1/2/3/6/7       ; 0F 21 /r             [386]
  1112. c MOV reg32,TR3/4/5/6/7         ; 0F 24 /r             [386]
  1113. c MOV CR0/2/3/4,reg32           ; 0F 22 /r             [386]
  1114. c MOV DR0/1/2/3/6/7,reg32       ; 0F 23 /r             [386]
  1115. c MOV TR3/4/5/6/7,reg32         ; 0F 26 /r             [386]
  1116. c{MOV} copies the contents of its source (second) operand into its
  1117. destination (first) operand.
  1118. In all forms of the c{MOV} instruction, the two operands are the
  1119. same size, except for moving between a segment register and an
  1120. c{r/m32} operand. These instructions are treated exactly like the
  1121. corresponding 16-bit equivalent (so that, for example, c{MOV
  1122. DS,EAX} functions identically to c{MOV DS,AX} but saves a prefix
  1123. when in 32-bit mode), except that when a segment register is moved
  1124. into a 32-bit destination, the top two bytes of the result are
  1125. undefined.
  1126. c{MOV} may not use c{CS} as a destination.
  1127. c{CR4} is only a supported register on the Pentium and above.
  1128. H{insMOVD} ic{MOVD}: Move Doubleword to/from MMX Register
  1129. c MOVD mmxreg,r/m32             ; 0F 6E /r             [PENT,MMX]
  1130. c MOVD r/m32,mmxreg             ; 0F 7E /r             [PENT,MMX]
  1131. c{MOVD} copies 32 bits from its source (second) operand into its
  1132. destination (first) operand. When the destination is a 64-bit MMX
  1133. register, the top 32 bits are set to zero.
  1134. H{insMOVQ} ic{MOVQ}: Move Quadword to/from MMX Register
  1135. c MOVQ mmxreg,r/m64             ; 0F 6F /r             [PENT,MMX]
  1136. c MOVQ r/m64,mmxreg             ; 0F 7F /r             [PENT,MMX]
  1137. c{MOVQ} copies 64 bits from its source (second) operand into its
  1138. destination (first) operand.
  1139. H{insMOVSB} ic{MOVSB}, ic{MOVSW}, ic{MOVSD}: Move String
  1140. c MOVSB                         ; A4                   [8086]
  1141. c MOVSW                         ; o16 A5               [8086]
  1142. c MOVSD                         ; o32 A5               [386]
  1143. c{MOVSB} copies the byte at c{[ES:DI]} or c{[ES:EDI]} to
  1144. c{[DS:SI]} or c{[DS:ESI]}. It then increments or decrements
  1145. (depending on the direction flag: increments if the flag is clear,
  1146. decrements if it is set) c{SI} and c{DI} (or c{ESI} and c{EDI}).
  1147. The registers used are c{SI} and c{DI} if the address size is 16
  1148. bits, and c{ESI} and c{EDI} if it is 32 bits. If you need to use
  1149. an address size not equal to the current c{BITS} setting, you can
  1150. use an explicit ic{a16} or ic{a32} prefix.
  1151. The segment register used to load from c{[SI]} or c{[ESI]} can be
  1152. overridden by using a segment register name as a prefix (for
  1153. example, c{es movsb}). The use of c{ES} for the store to c{[DI]}
  1154. or c{[EDI]} cannot be overridden.
  1155. c{MOVSW} and c{MOVSD} work in the same way, but they copy a word
  1156. or a doubleword instead of a byte, and increment or decrement the
  1157. addressing registers by 2 or 4 instead of 1.
  1158. The c{REP} prefix may be used to repeat the instruction c{CX} (or
  1159. c{ECX} - again, the address size chooses which) times.
  1160. H{insMOVSX} ic{MOVSX}, ic{MOVZX}: Move Data with Sign or Zero Extend
  1161. c MOVSX reg16,r/m8              ; o16 0F BE /r         [386]
  1162. c MOVSX reg32,r/m8              ; o32 0F BE /r         [386]
  1163. c MOVSX reg32,r/m16             ; o32 0F BF /r         [386]
  1164. c MOVZX reg16,r/m8              ; o16 0F B6 /r         [386]
  1165. c MOVZX reg32,r/m8              ; o32 0F B6 /r         [386]
  1166. c MOVZX reg32,r/m16             ; o32 0F B7 /r         [386]
  1167. c{MOVSX} sign-extends its source (second) operand to the length of
  1168. its destination (first) operand, and copies the result into the
  1169. destination operand. c{MOVZX} does the same, but zero-extends
  1170. rather than sign-extending.
  1171. H{insMUL} ic{MUL}: Unsigned Integer Multiply
  1172. c MUL r/m8                      ; F6 /4                [8086]
  1173. c MUL r/m16                     ; o16 F7 /4            [8086]
  1174. c MUL r/m32                     ; o32 F7 /4            [386]
  1175. c{MUL} performs unsigned integer multiplication. The other operand
  1176. to the multiplication, and the destination operand, are implicit, in
  1177. the following way:
  1178. b For c{MUL r/m8}, c{AL} is multiplied by the given operand; the
  1179. product is stored in c{AX}.
  1180. b For c{MUL r/m16}, c{AX} is multiplied by the given operand;
  1181. the product is stored in c{DX:AX}.
  1182. b For c{MUL r/m32}, c{EAX} is multiplied by the given operand;
  1183. the product is stored in c{EDX:EAX}.
  1184. Signed integer multiplication is performed by the c{IMUL}
  1185. instruction: see k{insIMUL}.
  1186. H{insNEG} ic{NEG}, ic{NOT}: Two's and One's Complement
  1187. c NEG r/m8                      ; F6 /3                [8086]
  1188. c NEG r/m16                     ; o16 F7 /3            [8086]
  1189. c NEG r/m32                     ; o32 F7 /3            [386]
  1190. c NOT r/m8                      ; F6 /2                [8086]
  1191. c NOT r/m16                     ; o16 F7 /2            [8086]
  1192. c NOT r/m32                     ; o32 F7 /2            [386]
  1193. c{NEG} replaces the contents of its operand by the two's complement
  1194. negation (invert all the bits and then add one) of the original
  1195. value. c{NOT}, similarly, performs one's complement (inverts all
  1196. the bits).
  1197. H{insNOP} ic{NOP}: No Operation
  1198. c NOP                           ; 90                   [8086]
  1199. c{NOP} performs no operation. Its opcode is the same as that
  1200. generated by c{XCHG AX,AX} or c{XCHG EAX,EAX} (depending on the
  1201. processor mode; see k{insXCHG}).
  1202. H{insOR} ic{OR}: Bitwise OR
  1203. c OR r/m8,reg8                  ; 08 /r                [8086]
  1204. c OR r/m16,reg16                ; o16 09 /r            [8086]
  1205. c OR r/m32,reg32                ; o32 09 /r            [386]
  1206. c OR reg8,r/m8                  ; 0A /r                [8086]
  1207. c OR reg16,r/m16                ; o16 0B /r            [8086]
  1208. c OR reg32,r/m32                ; o32 0B /r            [386]
  1209. c OR r/m8,imm8                  ; 80 /1 ib             [8086]
  1210. c OR r/m16,imm16                ; o16 81 /1 iw         [8086]
  1211. c OR r/m32,imm32                ; o32 81 /1 id         [386]
  1212. c OR r/m16,imm8                 ; o16 83 /1 ib         [8086]
  1213. c OR r/m32,imm8                 ; o32 83 /1 ib         [386]
  1214. c OR AL,imm8                    ; 0C ib                [8086]
  1215. c OR AX,imm16                   ; o16 0D iw            [8086]
  1216. c OR EAX,imm32                  ; o32 0D id            [386]
  1217. c{OR} performs a bitwise OR operation between its two operands
  1218. (i.e. each bit of the result is 1 if and only if at least one of the
  1219. corresponding bits of the two inputs was 1), and stores the result
  1220. in the destination (first) operand.
  1221. In the forms with an 8-bit immediate second operand and a longer
  1222. first operand, the second operand is considered to be signed, and is
  1223. sign-extended to the length of the first operand. In these cases,
  1224. the c{BYTE} qualifier is necessary to force NASM to generate this
  1225. form of the instruction.
  1226. The MMX instruction c{POR} (see k{insPOR}) performs the same
  1227. operation on the 64-bit MMX registers.
  1228. H{insOUT} ic{OUT}: Output Data to I/O Port
  1229. c OUT imm8,AL                   ; E6 ib                [8086]
  1230. c OUT imm8,AX                   ; o16 E7 ib            [8086]
  1231. c OUT imm8,EAX                  ; o32 E7 ib            [386]
  1232. c OUT DX,AL                     ; EE                   [8086]
  1233. c OUT DX,AX                     ; o16 EF               [8086]
  1234. c OUT DX,EAX                    ; o32 EF               [386]
  1235. c{IN} writes the contents of the given source register to the
  1236. specified I/O port. The port number may be specified as an immediate
  1237. value if it is between 0 and 255, and otherwise must be stored in
  1238. c{DX}. See also c{IN} (k{insIN}).
  1239. H{insOUTSB} ic{OUTSB}, ic{OUTSW}, ic{OUTSD}: Output String to I/O Port
  1240. c OUTSB                         ; 6E                   [186]
  1241. c OUTSW                         ; o16 6F               [186]
  1242. c OUTSD                         ; o32 6F               [386]
  1243. c{OUTSB} loads a byte from c{[DS:SI]} or c{[DS:ESI]} and writes
  1244. it to the I/O port specified in c{DX}. It then increments or
  1245. decrements (depending on the direction flag: increments if the flag
  1246. is clear, decrements if it is set) c{SI} or c{ESI}.
  1247. The register used is c{SI} if the address size is 16 bits, and
  1248. c{ESI} if it is 32 bits. If you need to use an address size not
  1249. equal to the current c{BITS} setting, you can use an explicit
  1250. ic{a16} or ic{a32} prefix.
  1251. The segment register used to load from c{[SI]} or c{[ESI]} can be
  1252. overridden by using a segment register name as a prefix (for
  1253. example, c{es outsb}).
  1254. c{OUTSW} and c{OUTSD} work in the same way, but they output a
  1255. word or a doubleword instead of a byte, and increment or decrement
  1256. the addressing registers by 2 or 4 instead of 1.
  1257. The c{REP} prefix may be used to repeat the instruction c{CX} (or
  1258. c{ECX} - again, the address size chooses which) times.
  1259. H{insPACKSSDW} ic{PACKSSDW}, ic{PACKSSWB}, ic{PACKUSWB}: Pack Data
  1260. c PACKSSDW mmxreg,r/m64         ; 0F 6B /r             [PENT,MMX]
  1261. c PACKSSWB mmxreg,r/m64         ; 0F 63 /r             [PENT,MMX]
  1262. c PACKUSWB mmxreg,r/m64         ; 0F 67 /r             [PENT,MMX]
  1263. All these instructions start by forming a notional 128-bit word by
  1264. placing the source (second) operand on the left of the destination
  1265. (first) operand. c{PACKSSDW} then splits this 128-bit word into
  1266. four doublewords, converts each to a word, and loads them side by
  1267. side into the destination register; c{PACKSSWB} and c{PACKUSWB}
  1268. both split the 128-bit word into eight words, converts each to a
  1269. byte, and loads e{those} side by side into the destination
  1270. register.
  1271. c{PACKSSDW} and c{PACKSSWB} perform signed saturation when
  1272. reducing the length of numbers: if the number is too large to fit
  1273. into the reduced space, they replace it by the largest signed number
  1274. (c{7FFFh} or c{7Fh}) that e{will} fit, and if it is too small
  1275. then they replace it by the smallest signed number (c{8000h} or
  1276. c{80h}) that will fit. c{PACKUSWB} performs unsigned saturation:
  1277. it treats its input as unsigned, and replaces it by the largest
  1278. unsigned number that will fit.
  1279. H{insPADDB} ic{PADDxx}: MMX Packed Addition
  1280. c PADDB mmxreg,r/m64            ; 0F FC /r             [PENT,MMX]
  1281. c PADDW mmxreg,r/m64            ; 0F FD /r             [PENT,MMX]
  1282. c PADDD mmxreg,r/m64            ; 0F FE /r             [PENT,MMX]
  1283. c PADDSB mmxreg,r/m64           ; 0F EC /r             [PENT,MMX]
  1284. c PADDSW mmxreg,r/m64           ; 0F ED /r             [PENT,MMX]
  1285. c PADDUSB mmxreg,r/m64          ; 0F DC /r             [PENT,MMX]
  1286. c PADDUSW mmxreg,r/m64          ; 0F DD /r             [PENT,MMX]
  1287. c{PADDxx} all perform packed addition between their two 64-bit
  1288. operands, storing the result in the destination (first) operand. The
  1289. c{PADDxB} forms treat the 64-bit operands as vectors of eight
  1290. bytes, and add each byte individually; c{PADDxW} treat the operands
  1291. as vectors of four words; and c{PADDD} treats its operands as
  1292. vectors of two doublewords.
  1293. c{PADDSB} and c{PADDSW} perform signed saturation on the sum of
  1294. each pair of bytes or words: if the result of an addition is too
  1295. large or too small to fit into a signed byte or word result, it is
  1296. clipped (saturated) to the largest or smallest value which e{will}
  1297. fit. c{PADDUSB} and c{PADDUSW} similarly perform unsigned
  1298. saturation, clipping to c{0FFh} or c{0FFFFh} if the result is
  1299. larger than that.
  1300. H{insPADDSIW} ic{PADDSIW}: MMX Packed Addition to Implicit
  1301. Destination
  1302. c PADDSIW mmxreg,r/m64          ; 0F 51 /r             [CYRIX,MMX]
  1303. c{PADDSIW}, specific to the Cyrix extensions to the MMX instruction
  1304. set, performs the same function as c{PADDSW}, except that the
  1305. result is not placed in the register specified by the first operand,
  1306. but instead in the register whose number differs from the first
  1307. operand only in the last bit. So c{PADDSIW MM0,MM2} would put the
  1308. result in c{MM1}, but c{PADDSIW MM1,MM2} would put the result in
  1309. c{MM0}.
  1310. H{insPAND} ic{PAND}, ic{PANDN}: MMX Bitwise AND and AND-NOT
  1311. c PAND mmxreg,r/m64             ; 0F DB /r             [PENT,MMX]
  1312. c PANDN mmxreg,r/m64            ; 0F DF /r             [PENT,MMX]
  1313. c{PAND} performs a bitwise AND operation between its two operands
  1314. (i.e. each bit of the result is 1 if and only if the corresponding
  1315. bits of the two inputs were both 1), and stores the result in the
  1316. destination (first) operand.
  1317. c{PANDN} performs the same operation, but performs a one's
  1318. complement operation on the destination (first) operand first.
  1319. H{insPAVEB} ic{PAVEB}: MMX Packed Average
  1320. c PAVEB mmxreg,r/m64            ; 0F 50 /r             [CYRIX,MMX]
  1321. c{PAVEB}, specific to the Cyrix MMX extensions, treats its two
  1322. operands as vectors of eight unsigned bytes, and calculates the
  1323. average of the corresponding bytes in the operands. The resulting
  1324. vector of eight averages is stored in the first operand.
  1325. H{insPCMPEQB} ic{PCMPxx}: MMX Packed Comparison
  1326. c PCMPEQB mmxreg,r/m64          ; 0F 74 /r             [PENT,MMX]
  1327. c PCMPEQW mmxreg,r/m64          ; 0F 75 /r             [PENT,MMX]
  1328. c PCMPEQD mmxreg,r/m64          ; 0F 76 /r             [PENT,MMX]
  1329. c PCMPGTB mmxreg,r/m64          ; 0F 64 /r             [PENT,MMX]
  1330. c PCMPGTW mmxreg,r/m64          ; 0F 65 /r             [PENT,MMX]
  1331. c PCMPGTD mmxreg,r/m64          ; 0F 66 /r             [PENT,MMX]
  1332. The c{PCMPxx} instructions all treat their operands as vectors of
  1333. bytes, words, or doublewords; corresponding elements of the source
  1334. and destination are compared, and the corresponding element of the
  1335. destination (first) operand is set to all zeros or all ones
  1336. depending on the result of the comparison.
  1337. c{PCMPxxB} treats the operands as vectors of eight bytes,
  1338. c{PCMPxxW} treats them as vectors of four words, and c{PCMPxxD} as
  1339. two doublewords.
  1340. c{PCMPEQx} sets the corresponding element of the destination
  1341. operand to all ones if the two elements compared are equal;
  1342. c{PCMPGTx} sets the destination element to all ones if the element
  1343. of the first (destination) operand is greater (treated as a signed
  1344. integer) than that of the second (source) operand.
  1345. H{insPDISTIB} ic{PDISTIB}: MMX Packed Distance and Accumulate
  1346. with Implied Register
  1347. c PDISTIB mmxreg,mem64          ; 0F 54 /r             [CYRIX,MMX]
  1348. c{PDISTIB}, specific to the Cyrix MMX extensions, treats its two
  1349. input operands as vectors of eight unsigned bytes. For each byte
  1350. position, it finds the absolute difference between the bytes in that
  1351. position in the two input operands, and adds that value to the byte
  1352. in the same position in the implied output register. The addition is
  1353. saturated to an unsigned byte in the same way as c{PADDUSB}.
  1354. The implied output register is found in the same way as c{PADDSIW}
  1355. (k{insPADDSIW}).
  1356. Note that c{PDISTIB} cannot take a register as its second source
  1357. operand.
  1358. H{insPMACHRIW} ic{PMACHRIW}: MMX Packed Multiply and Accumulate
  1359. with Rounding
  1360. c PMACHRIW mmxreg,mem64         ; 0F 5E /r             [CYRIX,MMX]
  1361. c{PMACHRIW} acts almost identically to c{PMULHRIW}
  1362. (k{insPMULHRW}), but instead of e{storing} its result in the
  1363. implied destination register, it e{adds} its result, as four packed
  1364. words, to the implied destination register. No saturation is done:
  1365. the addition can wrap around.
  1366. Note that c{PMACHRIW} cannot take a register as its second source
  1367. operand.
  1368. H{insPMADDWD} ic{PMADDWD}: MMX Packed Multiply and Add
  1369. c PMADDWD mmxreg,r/m64          ; 0F F5 /r             [PENT,MMX]
  1370. c{PMADDWD} treats its two inputs as vectors of four signed words.
  1371. It multiplies corresponding elements of the two operands, giving
  1372. four signed doubleword results. The top two of these are added and
  1373. placed in the top 32 bits of the destination (first) operand; the
  1374. bottom two are added and placed in the bottom 32 bits.
  1375. H{insPMAGW} ic{PMAGW}: MMX Packed Magnitude
  1376. c PMAGW mmxreg,r/m64            ; 0F 52 /r             [CYRIX,MMX]
  1377. c{PMAGW}, specific to the Cyrix MMX extensions, treats both its
  1378. operands as vectors of four signed words. It compares the absolute
  1379. values of the words in corresponding positions, and sets each word
  1380. of the destination (first) operand to whichever of the two words in
  1381. that position had the larger absolute value.
  1382. H{insPMULHRW} ic{PMULHRW}, ic{PMULHRIW}: MMX Packed Multiply
  1383. High with Rounding
  1384. c PMULHRW mmxreg,r/m64          ; 0F 59 /r             [CYRIX,MMX]
  1385. c PMULHRIW mmxreg,r/m64         ; 0F 5D /r             [CYRIX,MMX]
  1386. These instructions, specific to the Cyrix MMX extensions, treat
  1387. their operands as vectors of four signed words. Words in
  1388. corresponding positions are multiplied, to give a 32-bit value in
  1389. which bits 30 and 31 are guaranteed equal. Bits 30 to 15 of this
  1390. value (bit mask c{0x7FFF8000}) are taken and stored in the
  1391. corresponding position of the destination operand, after first
  1392. rounding the low bit (equivalent to adding c{0x4000} before
  1393. extracting bits 30 to 15).
  1394. For c{PMULHRW}, the destination operand is the first operand; for
  1395. c{PMULHRIW} the destination operand is implied by the first operand
  1396. in the manner of c{PADDSIW} (k{insPADDSIW}).
  1397. H{insPMULHW} ic{PMULHW}, ic{PMULLW}: MMX Packed Multiply
  1398. c PMULHW mmxreg,r/m64           ; 0F E5 /r             [PENT,MMX]
  1399. c PMULLW mmxreg,r/m64           ; 0F D5 /r             [PENT,MMX]
  1400. c{PMULxW} treats its two inputs as vectors of four signed words. It
  1401. multiplies corresponding elements of the two operands, giving four
  1402. signed doubleword results.
  1403. c{PMULHW} then stores the top 16 bits of each doubleword in the
  1404. destination (first) operand; c{PMULLW} stores the bottom 16 bits of
  1405. each doubleword in the destination operand.
  1406. H{insPMVccZB} ic{PMVccZB}: MMX Packed Conditional Move
  1407. c PMVZB mmxreg,mem64            ; 0F 58 /r             [CYRIX,MMX]
  1408. c PMVNZB mmxreg,mem64           ; 0F 5A /r             [CYRIX,MMX]
  1409. c PMVLZB mmxreg,mem64           ; 0F 5B /r             [CYRIX,MMX]
  1410. c PMVGEZB mmxreg,mem64          ; 0F 5C /r             [CYRIX,MMX]
  1411. These instructions, specific to the Cyrix MMX extensions, perform
  1412. parallel conditional moves. The two input operands are treated as
  1413. vectors of eight bytes. Each byte of the destination (first) operand
  1414. is either written from the corresponding byte of the source (second)
  1415. operand, or left alone, depending on the value of the byte in the
  1416. e{implied} operand (specified in the same way as c{PADDSIW}, in
  1417. k{insPADDSIW}).
  1418. c{PMVZB} performs each move if the corresponding byte in the
  1419. implied operand is zero. c{PMVNZB} moves if the byte is non-zero.
  1420. c{PMVLZB} moves if the byte is less than zero, and c{PMVGEZB}
  1421. moves if the byte is greater than or equal to zero.
  1422. Note that these instructions cannot take a register as their second
  1423. source operand.
  1424. H{insPOP} ic{POP}: Pop Data from Stack
  1425. c POP reg16                     ; o16 58+r             [8086]
  1426. c POP reg32                     ; o32 58+r             [386]
  1427. c POP r/m16                     ; o16 8F /0            [8086]
  1428. c POP r/m32                     ; o32 8F /0            [386]
  1429. c POP CS                        ; 0F                   [8086,UNDOC]
  1430. c POP DS                        ; 1F                   [8086]
  1431. c POP ES                        ; 07                   [8086]
  1432. c POP SS                        ; 17                   [8086]
  1433. c POP FS                        ; 0F A1                [386]
  1434. c POP GS                        ; 0F A9                [386]
  1435. c{POP} loads a value from the stack (from c{[SS:SP]} or
  1436. c{[SS:ESP]}) and then increments the stack pointer.
  1437. The address-size attribute of the instruction determines whether
  1438. c{SP} or c{ESP} is used as the stack pointer: to deliberately
  1439. override the default given by the c{BITS} setting, you can use an
  1440. ic{a16} or ic{a32} prefix.
  1441. The operand-size attribute of the instruction determines whether the
  1442. stack pointer is incremented by 2 or 4: this means that segment
  1443. register pops in c{BITS 32} mode will pop 4 bytes off the stack and
  1444. discard the upper two of them. If you need to override that, you can
  1445. use an ic{o16} or ic{o32} prefix.
  1446. The above opcode listings give two forms for general-purpose
  1447. register pop instructions: for example, c{POP BX} has the two forms
  1448. c{5B} and c{8F C3}. NASM will always generate the shorter form
  1449. when given c{POP BX}. NDISASM will disassemble both.
  1450. c{POP CS} is not a documented instruction, and is not supported on
  1451. any processor above the 8086 (since they use c{0Fh} as an opcode
  1452. prefix for instruction set extensions). However, at least some 8086
  1453. processors do support it, and so NASM generates it for completeness.
  1454. H{insPOPA} ic{POPAx}: Pop All General-Purpose Registers
  1455. c POPA                          ; 61                   [186]
  1456. c POPAW                         ; o16 61               [186]
  1457. c POPAD                         ; o32 61               [386]
  1458. c{POPAW} pops a word from the stack into each of, successively,
  1459. c{DI}, c{SI}, c{BP}, nothing (it discards a word from the stack
  1460. which was a placeholder for c{SP}), c{BX}, c{DX}, c{CX} and
  1461. c{AX}. It is intended to reverse the operation of c{PUSHAW} (see
  1462. k{insPUSHA}), but it ignores the value for c{SP} that was pushed
  1463. on the stack by c{PUSHAW}.
  1464. c{POPAD} pops twice as much data, and places the results in
  1465. c{EDI}, c{ESI}, c{EBP}, nothing (placeholder for c{ESP}),
  1466. c{EBX}, c{EDX}, c{ECX} and c{EAX}. It reverses the operation of
  1467. c{PUSHAD}.
  1468. c{POPA} is an alias mnemonic for either c{POPAW} or c{POPAD},
  1469. depending on the current c{BITS} setting.
  1470. Note that the registers are popped in reverse order of their numeric
  1471. values in opcodes (see k{iref-rv}).
  1472. H{insPOPF} ic{POPFx}: Pop Flags Register
  1473. c POPF                          ; 9D                   [186]
  1474. c POPFW                         ; o16 9D               [186]
  1475. c POPFD                         ; o32 9D               [386]
  1476. c{POPFW} pops a word from the stack and stores it in the bottom 16
  1477. bits of the flags register (or the whole flags register, on
  1478. processors below a 386). c{POPFD} pops a doubleword and stores it
  1479. in the entire flags register.
  1480. c{POPF} is an alias mnemonic for either c{POPFW} or c{POPFD},
  1481. depending on the current c{BITS} setting.
  1482. See also c{PUSHF} (k{insPUSHF}).
  1483. H{insPOR} ic{POR}: MMX Bitwise OR
  1484. c POR mmxreg,r/m64              ; 0F EB /r             [PENT,MMX]
  1485. c{POR} performs a bitwise OR operation between its two operands
  1486. (i.e. each bit of the result is 1 if and only if at least one of the
  1487. corresponding bits of the two inputs was 1), and stores the result
  1488. in the destination (first) operand.
  1489. H{insPSLLD} ic{PSLLx}, ic{PSRLx}, ic{PSRAx}: MMX Bit Shifts
  1490. c PSLLW mmxreg,r/m64            ; 0F F1 /r             [PENT,MMX]
  1491. c PSLLW mmxreg,imm8             ; 0F 71 /6 ib          [PENT,MMX]
  1492. c PSLLD mmxreg,r/m64            ; 0F F2 /r             [PENT,MMX]
  1493. c PSLLD mmxreg,imm8             ; 0F 72 /6 ib          [PENT,MMX]
  1494. c PSLLQ mmxreg,r/m64            ; 0F F3 /r             [PENT,MMX]
  1495. c PSLLQ mmxreg,imm8             ; 0F 73 /6 ib          [PENT,MMX]
  1496. c PSRAW mmxreg,r/m64            ; 0F E1 /r             [PENT,MMX]
  1497. c PSRAW mmxreg,imm8             ; 0F 71 /4 ib          [PENT,MMX]
  1498. c PSRAD mmxreg,r/m64            ; 0F E2 /r             [PENT,MMX]
  1499. c PSRAD mmxreg,imm8             ; 0F 72 /4 ib          [PENT,MMX]
  1500. c PSRLW mmxreg,r/m64            ; 0F D1 /r             [PENT,MMX]
  1501. c PSRLW mmxreg,imm8             ; 0F 71 /2 ib          [PENT,MMX]
  1502. c PSRLD mmxreg,r/m64            ; 0F D2 /r             [PENT,MMX]
  1503. c PSRLD mmxreg,imm8             ; 0F 72 /2 ib          [PENT,MMX]
  1504. c PSRLQ mmxreg,r/m64            ; 0F D3 /r             [PENT,MMX]
  1505. c PSRLQ mmxreg,imm8             ; 0F 73 /2 ib          [PENT,MMX]
  1506. c{PSxxQ} perform simple bit shifts on the 64-bit MMX registers: the
  1507. destination (first) operand is shifted left or right by the number of
  1508. bits given in the source (second) operand, and the vacated bits are
  1509. filled in with zeros (for a logical shift) or copies of the original
  1510. sign bit (for an arithmetic right shift).
  1511. c{PSxxW} and c{PSxxD} perform packed bit shifts: the destination
  1512. operand is treated as a vector of four words or two doublewords, and
  1513. each element is shifted individually, so bits shifted out of one
  1514. element do not interfere with empty bits coming into the next.
  1515. c{PSLLx} and c{PSRLx} perform logical shifts: the vacated bits at
  1516. one end of the shifted number are filled with zeros. c{PSRAx}
  1517. performs an arithmetic right shift: the vacated bits at the top of
  1518. the shifted number are filled with copies of the original top (sign)
  1519. bit.
  1520. H{insPSUBB} ic{PSUBxx}: MMX Packed Subtraction
  1521. c PSUBB mmxreg,r/m64            ; 0F F8 /r             [PENT,MMX]
  1522. c PSUBW mmxreg,r/m64            ; 0F F9 /r             [PENT,MMX]
  1523. c PSUBD mmxreg,r/m64            ; 0F FA /r             [PENT,MMX]
  1524. c PSUBSB mmxreg,r/m64           ; 0F E8 /r             [PENT,MMX]
  1525. c PSUBSW mmxreg,r/m64           ; 0F E9 /r             [PENT,MMX]
  1526. c PSUBUSB mmxreg,r/m64          ; 0F D8 /r             [PENT,MMX]
  1527. c PSUBUSW mmxreg,r/m64          ; 0F D9 /r             [PENT,MMX]
  1528. c{PSUBxx} all perform packed subtraction between their two 64-bit
  1529. operands, storing the result in the destination (first) operand. The
  1530. c{PSUBxB} forms treat the 64-bit operands as vectors of eight
  1531. bytes, and subtract each byte individually; c{PSUBxW} treat the operands
  1532. as vectors of four words; and c{PSUBD} treats its operands as
  1533. vectors of two doublewords.
  1534. In all cases, the elements of the operand on the right are
  1535. subtracted from the corresponding elements of the operand on the
  1536. left, not the other way round.
  1537. c{PSUBSB} and c{PSUBSW} perform signed saturation on the sum of
  1538. each pair of bytes or words: if the result of a subtraction is too
  1539. large or too small to fit into a signed byte or word result, it is
  1540. clipped (saturated) to the largest or smallest value which e{will}
  1541. fit. c{PSUBUSB} and c{PSUBUSW} similarly perform unsigned
  1542. saturation, clipping to c{0FFh} or c{0FFFFh} if the result is
  1543. larger than that.
  1544. H{insPSUBSIW} ic{PSUBSIW}: MMX Packed Subtract with Saturation to
  1545. Implied Destination
  1546. c PSUBSIW mmxreg,r/m64          ; 0F 55 /r             [CYRIX,MMX]
  1547. c{PSUBSIW}, specific to the Cyrix extensions to the MMX instruction
  1548. set, performs the same function as c{PSUBSW}, except that the
  1549. result is not placed in the register specified by the first operand,
  1550. but instead in the implied destination register, specified as for
  1551. c{PADDSIW} (k{insPADDSIW}).
  1552. H{insPUNPCKHBW} ic{PUNPCKxxx}: Unpack Data
  1553. c PUNPCKHBW mmxreg,r/m64        ; 0F 68 /r             [PENT,MMX]
  1554. c PUNPCKHWD mmxreg,r/m64        ; 0F 69 /r             [PENT,MMX]
  1555. c PUNPCKHDQ mmxreg,r/m64        ; 0F 6A /r             [PENT,MMX]
  1556. c PUNPCKLBW mmxreg,r/m64        ; 0F 60 /r             [PENT,MMX]
  1557. c PUNPCKLWD mmxreg,r/m64        ; 0F 61 /r             [PENT,MMX]
  1558. c PUNPCKLDQ mmxreg,r/m64        ; 0F 62 /r             [PENT,MMX]
  1559. c{PUNPCKxx} all treat their operands as vectors, and produce a new
  1560. vector generated by interleaving elements from the two inputs. The
  1561. c{PUNPCKHxx} instructions start by throwing away the bottom half of
  1562. each input operand, and the c{PUNPCKLxx} instructions throw away
  1563. the top half.
  1564. The remaining elements, totalling 64 bits, are then interleaved into
  1565. the destination, alternating elements from the second (source)
  1566. operand and the first (destination) operand: so the leftmost element
  1567. in the result always comes from the second operand, and the
  1568. rightmost from the destination.
  1569. c{PUNPCKxBW} works a byte at a time, c{PUNPCKxWD} a word at a
  1570. time, and c{PUNPCKxDQ} a doubleword at a time.
  1571. So, for example, if the first operand held c{0x7A6A5A4A3A2A1A0A}
  1572. and the second held c{0x7B6B5B4B3B2B1B0B}, then:
  1573. b c{PUNPCKHBW} would return c{0x7B7A6B6A5B5A4B4A}.
  1574. b c{PUNPCKHWD} would return c{0x7B6B7A6A5B4B5A4A}.
  1575. b c{PUNPCKHDQ} would return c{0x7B6B5B4B7A6A5A4A}.
  1576. b c{PUNPCKLBW} would return c{0x3B3A2B2A1B1A0B0A}.
  1577. b c{PUNPCKLWD} would return c{0x3B2B3A2A1B0B1A0A}.
  1578. b c{PUNPCKLDQ} would return c{0x3B2B1B0B3A2A1A0A}.
  1579. H{insPUSH} ic{PUSH}: Push Data on Stack
  1580. c PUSH reg16                    ; o16 50+r             [8086]
  1581. c PUSH reg32                    ; o32 50+r             [386]
  1582. c PUSH r/m16                    ; o16 FF /6            [8086]
  1583. c PUSH r/m32                    ; o32 FF /6            [386]
  1584. c PUSH CS                       ; 0E                   [8086]
  1585. c PUSH DS                       ; 1E                   [8086]
  1586. c PUSH ES                       ; 06                   [8086]
  1587. c PUSH SS                       ; 16                   [8086]
  1588. c PUSH FS                       ; 0F A0                [386]
  1589. c PUSH GS                       ; 0F A8                [386]
  1590. c PUSH imm8                     ; 6A ib                [286]
  1591. c PUSH imm16                    ; o16 68 iw            [286]
  1592. c PUSH imm32                    ; o32 68 id            [386]
  1593. c{PUSH} decrements the stack pointer (c{SP} or c{ESP}) by 2 or 4,
  1594. and then stores the given value at c{[SS:SP]} or c{[SS:ESP]}.
  1595. The address-size attribute of the instruction determines whether
  1596. c{SP} or c{ESP} is used as the stack pointer: to deliberately
  1597. override the default given by the c{BITS} setting, you can use an
  1598. ic{a16} or ic{a32} prefix.
  1599. The operand-size attribute of the instruction determines whether the
  1600. stack pointer is decremented by 2 or 4: this means that segment
  1601. register pushes in c{BITS 32} mode will push 4 bytes on the stack,
  1602. of which the upper two are undefined. If you need to override that,
  1603. you can use an ic{o16} or ic{o32} prefix.
  1604. The above opcode listings give two forms for general-purpose
  1605. i{register push} instructions: for example, c{PUSH BX} has the two
  1606. forms c{53} and c{FF F3}. NASM will always generate the shorter
  1607. form when given c{PUSH BX}. NDISASM will disassemble both.
  1608. Unlike the undocumented and barely supported c{POP CS}, c{PUSH CS}
  1609. is a perfectly valid and sensible instruction, supported on all
  1610. processors.
  1611. The instruction c{PUSH SP} may be used to distinguish an 8086 from
  1612. later processors: on an 8086, the value of c{SP} stored is the
  1613. value it has e{after} the push instruction, whereas on later
  1614. processors it is the value e{before} the push instruction.
  1615. H{insPUSHA} ic{PUSHAx}: Push All General-Purpose Registers
  1616. c PUSHA                         ; 60                   [186]
  1617. c PUSHAD                        ; o32 60               [386]
  1618. c PUSHAW                        ; o16 60               [186]
  1619. c{PUSHAW} pushes, in succession, c{AX}, c{CX}, c{DX}, c{BX},
  1620. c{SP}, c{BP}, c{SI} and c{DI} on the stack, decrementing the
  1621. stack pointer by a total of 16.
  1622. c{PUSHAD} pushes, in succession, c{EAX}, c{ECX}, c{EDX},
  1623. c{EBX}, c{ESP}, c{EBP}, c{ESI} and c{EDI} on the stack,
  1624. decrementing the stack pointer by a total of 32.
  1625. In both cases, the value of c{SP} or c{ESP} pushed is its
  1626. e{original} value, as it had before the instruction was executed.
  1627. c{PUSHA} is an alias mnemonic for either c{PUSHAW} or c{PUSHAD},
  1628. depending on the current c{BITS} setting.
  1629. Note that the registers are pushed in order of their numeric values
  1630. in opcodes (see k{iref-rv}).
  1631. See also c{POPA} (k{insPOPA}).
  1632. H{insPUSHF} ic{PUSHFx}: Push Flags Register
  1633. c PUSHF                         ; 9C                   [186]
  1634. c PUSHFD                        ; o32 9C               [386]
  1635. c PUSHFW                        ; o16 9C               [186]
  1636. c{PUSHFW} pops a word from the stack and stores it in the bottom 16
  1637. bits of the flags register (or the whole flags register, on
  1638. processors below a 386). c{PUSHFD} pops a doubleword and stores it
  1639. in the entire flags register.
  1640. c{PUSHF} is an alias mnemonic for either c{PUSHFW} or c{PUSHFD},
  1641. depending on the current c{BITS} setting.
  1642. See also c{POPF} (k{insPOPF}).
  1643. H{insPXOR} ic{PXOR}: MMX Bitwise XOR
  1644. c PXOR mmxreg,r/m64             ; 0F EF /r             [PENT,MMX]
  1645. c{PXOR} performs a bitwise XOR operation between its two operands
  1646. (i.e. each bit of the result is 1 if and only if exactly one of the
  1647. corresponding bits of the two inputs was 1), and stores the result
  1648. in the destination (first) operand.
  1649. H{insRCL} ic{RCL}, ic{RCR}: Bitwise Rotate through Carry Bit
  1650. c RCL r/m8,1                    ; D0 /2                [8086]
  1651. c RCL r/m8,CL                   ; D2 /2                [8086]
  1652. c RCL r/m8,imm8                 ; C0 /2 ib             [286]
  1653. c RCL r/m16,1                   ; o16 D1 /2            [8086]
  1654. c RCL r/m16,CL                  ; o16 D3 /2            [8086]
  1655. c RCL r/m16,imm8                ; o16 C1 /2 ib         [286]
  1656. c RCL r/m32,1                   ; o32 D1 /2            [386]
  1657. c RCL r/m32,CL                  ; o32 D3 /2            [386]
  1658. c RCL r/m32,imm8                ; o32 C1 /2 ib         [386]
  1659. c RCR r/m8,1                    ; D0 /3                [8086]
  1660. c RCR r/m8,CL                   ; D2 /3                [8086]
  1661. c RCR r/m8,imm8                 ; C0 /3 ib             [286]
  1662. c RCR r/m16,1                   ; o16 D1 /3            [8086]
  1663. c RCR r/m16,CL                  ; o16 D3 /3            [8086]
  1664. c RCR r/m16,imm8                ; o16 C1 /3 ib         [286]
  1665. c RCR r/m32,1                   ; o32 D1 /3            [386]
  1666. c RCR r/m32,CL                  ; o32 D3 /3            [386]
  1667. c RCR r/m32,imm8                ; o32 C1 /3 ib         [386]
  1668. c{RCL} and c{RCR} perform a 9-bit, 17-bit or 33-bit bitwise
  1669. rotation operation, involving the given source/destination (first)
  1670. operand and the carry bit. Thus, for example, in the operation
  1671. c{RCR AL,1}, a 9-bit rotation is performed in which c{AL} is
  1672. shifted left by 1, the top bit of c{AL} moves into the carry flag,
  1673. and the original value of the carry flag is placed in the low bit of
  1674. c{AL}.
  1675. The number of bits to rotate by is given by the second operand. Only
  1676. the bottom five bits of the rotation count are considered by
  1677. processors above the 8086.
  1678. You can force the longer (286 and upwards, beginning with a c{C1}
  1679. byte) form of c{RCL foo,1} by using a c{BYTE} prefix: c{RCL
  1680. foo,BYTE 1}. Similarly with c{RCR}.
  1681. H{insRDMSR} ic{RDMSR}: Read Model-Specific Registers
  1682. c RDMSR                         ; 0F 32                [PENT]
  1683. c{RDMSR} reads the processor Model-Specific Register (MSR) whose
  1684. index is stored in c{ECX}, and stores the result in c{EDX:EAX}.
  1685. See also c{WRMSR} (k{insWRMSR}).
  1686. H{insRDPMC} ic{RDPMC}: Read Performance-Monitoring Counters
  1687. c RDPMC                         ; 0F 33                [P6]
  1688. c{RDPMC} reads the processor performance-monitoring counter whose
  1689. index is stored in c{ECX}, and stores the result in c{EDX:EAX}.
  1690. H{insRDTSC} ic{RDTSC}: Read Time-Stamp Counter
  1691. c RDTSC                         ; 0F 31                [PENT]
  1692. c{RDTSC} reads the processor's time-stamp counter into c{EDX:EAX}.
  1693. H{insRET} ic{RET}, ic{RETF}, ic{RETN}: Return from Procedure Call
  1694. c RET                           ; C3                   [8086]
  1695. c RET imm16                     ; C2 iw                [8086]
  1696. c RETF                          ; CB                   [8086]
  1697. c RETF imm16                    ; CA iw                [8086]
  1698. c RETN                          ; C3                   [8086]
  1699. c RETN imm16                    ; C2 iw                [8086]
  1700. c{RET}, and its exact synonym c{RETN}, pop c{IP} or c{EIP} from
  1701. the stack and transfer control to the new address. Optionally, if a
  1702. numeric second operand is provided, they increment the stack pointer
  1703. by a further c{imm16} bytes after popping the return address.
  1704. c{RETF} executes a far return: after popping c{IP}/c{EIP}, it
  1705. then pops c{CS}, and e{then} increments the stack pointer by the
  1706. optional argument if present.
  1707. H{insROL} ic{ROL}, ic{ROR}: Bitwise Rotate
  1708. c ROL r/m8,1                    ; D0 /0                [8086]
  1709. c ROL r/m8,CL                   ; D2 /0                [8086]
  1710. c ROL r/m8,imm8                 ; C0 /0 ib             [286]
  1711. c ROL r/m16,1                   ; o16 D1 /0            [8086]
  1712. c ROL r/m16,CL                  ; o16 D3 /0            [8086]
  1713. c ROL r/m16,imm8                ; o16 C1 /0 ib         [286]
  1714. c ROL r/m32,1                   ; o32 D1 /0            [386]
  1715. c ROL r/m32,CL                  ; o32 D3 /0            [386]
  1716. c ROL r/m32,imm8                ; o32 C1 /0 ib         [386]
  1717. c ROR r/m8,1                    ; D0 /1                [8086]
  1718. c ROR r/m8,CL                   ; D2 /1                [8086]
  1719. c ROR r/m8,imm8                 ; C0 /1 ib             [286]
  1720. c ROR r/m16,1                   ; o16 D1 /1            [8086]
  1721. c ROR r/m16,CL                  ; o16 D3 /1            [8086]
  1722. c ROR r/m16,imm8                ; o16 C1 /1 ib         [286]
  1723. c ROR r/m32,1                   ; o32 D1 /1            [386]
  1724. c ROR r/m32,CL                  ; o32 D3 /1            [386]
  1725. c ROR r/m32,imm8                ; o32 C1 /1 ib         [386]
  1726. c{ROL} and c{ROR} perform a bitwise rotation operation on the given
  1727. source/destination (first) operand. Thus, for example, in the
  1728. operation c{ROR AL,1}, an 8-bit rotation is performed in which
  1729. c{AL} is shifted left by 1 and the original top bit of c{AL} moves
  1730. round into the low bit.
  1731. The number of bits to rotate by is given by the second operand. Only
  1732. the bottom 3, 4 or 5 bits (depending on the source operand size) of
  1733. the rotation count are considered by processors above the 8086.
  1734. You can force the longer (286 and upwards, beginning with a c{C1}
  1735. byte) form of c{ROL foo,1} by using a c{BYTE} prefix: c{ROL
  1736. foo,BYTE 1}. Similarly with c{ROR}.
  1737. H{insRSM} ic{RSM}: Resume from System-Management Mode
  1738. c RSM                           ; 0F AA                [PENT]
  1739. c{RSM} returns the processor to its normal operating mode when it
  1740. was in System-Management Mode.
  1741. H{insSAHF} ic{SAHF}: Store AH to Flags
  1742. c SAHF                          ; 9E                   [8086]
  1743. c{SAHF} sets the low byte of the flags word according to the
  1744. contents of the c{AH} register. See also c{LAHF} (k{insLAHF}).
  1745. H{insSAL} ic{SAL}, ic{SAR}: Bitwise Arithmetic Shifts
  1746. c SAL r/m8,1                    ; D0 /4                [8086]
  1747. c SAL r/m8,CL                   ; D2 /4                [8086]
  1748. c SAL r/m8,imm8                 ; C0 /4 ib             [286]
  1749. c SAL r/m16,1                   ; o16 D1 /4            [8086]
  1750. c SAL r/m16,CL                  ; o16 D3 /4            [8086]
  1751. c SAL r/m16,imm8                ; o16 C1 /4 ib         [286]
  1752. c SAL r/m32,1                   ; o32 D1 /4            [386]
  1753. c SAL r/m32,CL                  ; o32 D3 /4            [386]
  1754. c SAL r/m32,imm8                ; o32 C1 /4 ib         [386]
  1755. c SAR r/m8,1                    ; D0 /0                [8086]
  1756. c SAR r/m8,CL                   ; D2 /0                [8086]
  1757. c SAR r/m8,imm8                 ; C0 /0 ib             [286]
  1758. c SAR r/m16,1                   ; o16 D1 /0            [8086]
  1759. c SAR r/m16,CL                  ; o16 D3 /0            [8086]
  1760. c SAR r/m16,imm8                ; o16 C1 /0 ib         [286]
  1761. c SAR r/m32,1                   ; o32 D1 /0            [386]
  1762. c SAR r/m32,CL                  ; o32 D3 /0            [386]
  1763. c SAR r/m32,imm8                ; o32 C1 /0 ib         [386]
  1764. c{SAL} and c{SAR} perform an arithmetic shift operation on the given
  1765. source/destination (first) operand. The vacated bits are filled with
  1766. zero for c{SAL}, and with copies of the original high bit of the
  1767. source operand for c{SAR}.
  1768. c{SAL} is a synonym for c{SHL} (see k{insSHL}). NASM will
  1769. assemble either one to the same code, but NDISASM will always
  1770. disassemble that code as c{SHL}.
  1771. The number of bits to shift by is given by the second operand. Only
  1772. the bottom 3, 4 or 5 bits (depending on the source operand size) of
  1773. the shift count are considered by processors above the 8086.
  1774. You can force the longer (286 and upwards, beginning with a c{C1}
  1775. byte) form of c{SAL foo,1} by using a c{BYTE} prefix: c{SAL
  1776. foo,BYTE 1}. Similarly with c{SAR}.
  1777. H{insSALC} ic{SALC}: Set AL from Carry Flag
  1778. c SALC                          ; D6                   [8086,UNDOC]
  1779. c{SALC} is an early undocumented instruction similar in concept to
  1780. c{SETcc} (k{insSETcc}). Its function is to set c{AL} to zero if
  1781. the carry flag is clear, or to c{0xFF} if it is set.
  1782. H{insSBB} ic{SBB}: Subtract with Borrow
  1783. c SBB r/m8,reg8                 ; 18 /r                [8086]
  1784. c SBB r/m16,reg16               ; o16 19 /r            [8086]
  1785. c SBB r/m32,reg32               ; o32 19 /r            [386]
  1786. c SBB reg8,r/m8                 ; 1A /r                [8086]
  1787. c SBB reg16,r/m16               ; o16 1B /r            [8086]
  1788. c SBB reg32,r/m32               ; o32 1B /r            [386]
  1789. c SBB r/m8,imm8                 ; 80 /3 ib             [8086]
  1790. c SBB r/m16,imm16               ; o16 81 /3 iw         [8086]
  1791. c SBB r/m32,imm32               ; o32 81 /3 id         [386]
  1792. c SBB r/m16,imm8                ; o16 83 /3 ib         [8086]
  1793. c SBB r/m32,imm8                ; o32 83 /3 ib         [8086]
  1794. c SBB AL,imm8                   ; 1C ib                [8086]
  1795. c SBB AX,imm16                  ; o16 1D iw            [8086]
  1796. c SBB EAX,imm32                 ; o32 1D id            [386]
  1797. c{SBB} performs integer subtraction: it subtracts its second
  1798. operand, plus the value of the carry flag, from its first, and
  1799. leaves the result in its destination (first) operand. The flags are
  1800. set according to the result of the operation: in particular, the
  1801. carry flag is affected and can be used by a subsequent c{SBB}
  1802. instruction.
  1803. In the forms with an 8-bit immediate second operand and a longer
  1804. first operand, the second operand is considered to be signed, and is
  1805. sign-extended to the length of the first operand. In these cases,
  1806. the c{BYTE} qualifier is necessary to force NASM to generate this
  1807. form of the instruction.
  1808. To subtract one number from another without also subtracting the
  1809. contents of the carry flag, use c{SUB} (k{insSUB}).
  1810. H{insSCASB} ic{SCASB}, ic{SCASW}, ic{SCASD}: Scan String
  1811. c SCASB                         ; AE                   [8086]
  1812. c SCASW                         ; o16 AF               [8086]
  1813. c SCASD                         ; o32 AF               [386]
  1814. c{SCASB} compares the byte in c{AL} with the byte at c{[ES:DI]}
  1815. or c{[ES:EDI]}, and sets the flags accordingly. It then increments
  1816. or decrements (depending on the direction flag: increments if the
  1817. flag is clear, decrements if it is set) c{DI} (or c{EDI}).
  1818. The register used is c{DI} if the address size is 16 bits, and
  1819. c{EDI} if it is 32 bits. If you need to use an address size not
  1820. equal to the current c{BITS} setting, you can use an explicit
  1821. ic{a16} or ic{a32} prefix.
  1822. Segment override prefixes have no effect for this instruction: the
  1823. use of c{ES} for the load from c{[DI]} or c{[EDI]} cannot be
  1824. overridden.
  1825. c{SCASW} and c{SCASD} work in the same way, but they compare a
  1826. word to c{AX} or a doubleword to c{EAX} instead of a byte to
  1827. c{AL}, and increment or decrement the addressing registers by 2 or
  1828. 4 instead of 1.
  1829. The c{REPE} and c{REPNE} prefixes (equivalently, c{REPZ} and
  1830. c{REPNZ}) may be used to repeat the instruction up to c{CX} (or
  1831. c{ECX} - again, the address size chooses which) times until the
  1832. first unequal or equal byte is found.
  1833. H{insSETcc} ic{SETcc}: Set Register from Condition
  1834. c SETcc r/m8                    ; 0F 90+cc /2          [386]
  1835. c{SETcc} sets the given 8-bit operand to zero if its condition is
  1836. not satisfied, and to 1 if it is.
  1837. H{insSGDT} ic{SGDT}, ic{SIDT}, ic{SLDT}: Store Descriptor Table Pointers
  1838. c SGDT mem                      ; 0F 01 /0             [286,PRIV]
  1839. c SIDT mem                      ; 0F 01 /1             [286,PRIV]
  1840. c SLDT r/m16                    ; 0F 00 /0             [286,PRIV]
  1841. c{SGDT} and c{SIDT} both take a 6-byte memory area as an operand:
  1842. they store the contents of the GDTR (global descriptor table
  1843. register) or IDTR (interrupt descriptor table register) into that
  1844. area as a 32-bit linear address and a 16-bit size limit from that
  1845. area (in that order). These are the only instructions which directly
  1846. use e{linear} addresses, rather than segment/offset pairs.
  1847. c{SLDT} stores the segment selector corresponding to the LDT (local
  1848. descriptor table) into the given operand.
  1849. See also c{LGDT}, c{LIDT} and c{LLDT} (k{insLGDT}).
  1850. H{insSHL} ic{SHL}, ic{SHR}: Bitwise Logical Shifts
  1851. c SHL r/m8,1                    ; D0 /4                [8086]
  1852. c SHL r/m8,CL                   ; D2 /4                [8086]
  1853. c SHL r/m8,imm8                 ; C0 /4 ib             [286]
  1854. c SHL r/m16,1                   ; o16 D1 /4            [8086]
  1855. c SHL r/m16,CL                  ; o16 D3 /4            [8086]
  1856. c SHL r/m16,imm8                ; o16 C1 /4 ib         [286]
  1857. c SHL r/m32,1                   ; o32 D1 /4            [386]
  1858. c SHL r/m32,CL                  ; o32 D3 /4            [386]
  1859. c SHL r/m32,imm8                ; o32 C1 /4 ib         [386]
  1860. c SHR r/m8,1                    ; D0 /5                [8086]
  1861. c SHR r/m8,CL                   ; D2 /5                [8086]
  1862. c SHR r/m8,imm8                 ; C0 /5 ib             [286]
  1863. c SHR r/m16,1                   ; o16 D1 /5            [8086]
  1864. c SHR r/m16,CL                  ; o16 D3 /5            [8086]
  1865. c SHR r/m16,imm8                ; o16 C1 /5 ib         [286]
  1866. c SHR r/m32,1                   ; o32 D1 /5            [386]
  1867. c SHR r/m32,CL                  ; o32 D3 /5            [386]
  1868. c SHR r/m32,imm8                ; o32 C1 /5 ib         [386]
  1869. c{SHL} and c{SHR} perform a logical shift operation on the given
  1870. source/destination (first) operand. The vacated bits are filled with
  1871. zero.
  1872. A synonym for c{SHL} is c{SAL} (see k{insSAL}). NASM will
  1873. assemble either one to the same code, but NDISASM will always
  1874. disassemble that code as c{SHL}.
  1875. The number of bits to shift by is given by the second operand. Only
  1876. the bottom 3, 4 or 5 bits (depending on the source operand size) of
  1877. the shift count are considered by processors above the 8086.
  1878. You can force the longer (286 and upwards, beginning with a c{C1}
  1879. byte) form of c{SHL foo,1} by using a c{BYTE} prefix: c{SHL
  1880. foo,BYTE 1}. Similarly with c{SHR}.
  1881. H{insSHLD} ic{SHLD}, ic{SHRD}: Bitwise Double-Precision Shifts
  1882. c SHLD r/m16,reg16,imm8         ; o16 0F A4 /r ib      [386]
  1883. c SHLD r/m16,reg32,imm8         ; o32 0F A4 /r ib      [386]
  1884. c SHLD r/m16,reg16,CL           ; o16 0F A5 /r         [386]
  1885. c SHLD r/m16,reg32,CL           ; o32 0F A5 /r         [386]
  1886. c SHRD r/m16,reg16,imm8         ; o16 0F AC /r ib      [386]
  1887. c SHRD r/m32,reg32,imm8         ; o32 0F AC /r ib      [386]
  1888. c SHRD r/m16,reg16,CL           ; o16 0F AD /r         [386]
  1889. c SHRD r/m32,reg32,CL           ; o32 0F AD /r         [386]
  1890. c{SHLD} performs a double-precision left shift. It notionally places
  1891. its second operand to the right of its first, then shifts the entire
  1892. bit string thus generated to the left by a number of bits specified
  1893. in the third operand. It then updates only the e{first} operand
  1894. according to the result of this. The second operand is not modified.
  1895. c{SHRD} performs the corresponding right shift: it notionally
  1896. places the second operand to the e{left} of the first, shifts the
  1897. whole bit string right, and updates only the first operand.
  1898. For example, if c{EAX} holds c{0x01234567} and c{EBX} holds
  1899. c{0x89ABCDEF}, then the instruction c{SHLD EAX,EBX,4} would update
  1900. c{EAX} to hold c{0x12345678}. Under the same conditions, c{SHRD
  1901. EAX,EBX,4} would update c{EAX} to hold c{0xF0123456}.
  1902. The number of bits to shift by is given by the third operand. Only
  1903. the bottom 5 bits of the shift count are considered.
  1904. H{insSMI} ic{SMI}: System Management Interrupt
  1905. c SMI                           ; F1                   [386,UNDOC]
  1906. This is an opcode apparently supported by some AMD processors (which
  1907. is why it can generate the same opcode as c{INT1}), and places the
  1908. machine into system-management mode, a special debugging mode.
  1909. H{insSMSW} ic{SMSW}: Store Machine Status Word
  1910. c SMSW r/m16                    ; 0F 01 /4             [286,PRIV]
  1911. c{SMSW} stores the bottom half of the c{CR0} control register (or
  1912. the Machine Status Word, on 286 processors) into the destination
  1913. operand. See also c{LMSW} (k{insLMSW}).
  1914. H{insSTC} ic{STC}, ic{STD}, ic{STI}: Set Flags
  1915. c STC                           ; F9                   [8086]
  1916. c STD                           ; FD                   [8086]
  1917. c STI                           ; FB                   [8086]
  1918. These instructions set various flags. c{STC} sets the carry flag;
  1919. c{STD} sets the direction flag; and c{STI} sets the interrupt flag
  1920. (thus enabling interrupts).
  1921. To clear the carry, direction, or interrupt flags, use the c{CLC},
  1922. c{CLD} and c{CLI} instructions (k{insCLC}). To invert the carry
  1923. flag, use c{CMC} (k{insCMC}).
  1924. H{insSTOSB} ic{STOSB}, ic{STOSW}, ic{STOSD}: Store Byte to String
  1925. c STOSB                         ; AA                   [8086]
  1926. c STOSW                         ; o16 AB               [8086]
  1927. c STOSD                         ; o32 AB               [386]
  1928. c{STOSB} stores the byte in c{AL} at c{[ES:DI]} or c{[ES:EDI]},
  1929. and sets the flags accordingly. It then increments or decrements
  1930. (depending on the direction flag: increments if the flag is clear,
  1931. decrements if it is set) c{DI} (or c{EDI}).
  1932. The register used is c{DI} if the address size is 16 bits, and
  1933. c{EDI} if it is 32 bits. If you need to use an address size not
  1934. equal to the current c{BITS} setting, you can use an explicit
  1935. ic{a16} or ic{a32} prefix.
  1936. Segment override prefixes have no effect for this instruction: the
  1937. use of c{ES} for the store to c{[DI]} or c{[EDI]} cannot be
  1938. overridden.
  1939. c{STOSW} and c{STOSD} work in the same way, but they store the
  1940. word in c{AX} or the doubleword in c{EAX} instead of the byte in
  1941. c{AL}, and increment or decrement the addressing registers by 2 or
  1942. 4 instead of 1.
  1943. The c{REP} prefix may be used to repeat the instruction c{CX} (or
  1944. c{ECX} - again, the address size chooses which) times.
  1945. H{insSTR} ic{STR}: Store Task Register
  1946. c STR r/m16                     ; 0F 00 /1             [286,PRIV]
  1947. c{STR} stores the segment selector corresponding to the contents of
  1948. the Task Register into its operand.
  1949. H{insSUB} ic{SUB}: Subtract Integers
  1950. c SUB r/m8,reg8                 ; 28 /r                [8086]
  1951. c SUB r/m16,reg16               ; o16 29 /r            [8086]
  1952. c SUB r/m32,reg32               ; o32 29 /r            [386]
  1953. c SUB reg8,r/m8                 ; 2A /r                [8086]
  1954. c SUB reg16,r/m16               ; o16 2B /r            [8086]
  1955. c SUB reg32,r/m32               ; o32 2B /r            [386]
  1956. c SUB r/m8,imm8                 ; 80 /5 ib             [8086]
  1957. c SUB r/m16,imm16               ; o16 81 /5 iw         [8086]
  1958. c SUB r/m32,imm32               ; o32 81 /5 id         [386]
  1959. c SUB r/m16,imm8                ; o16 83 /5 ib         [8086]
  1960. c SUB r/m32,imm8                ; o32 83 /5 ib         [386]
  1961. c SUB AL,imm8                   ; 2C ib                [8086]
  1962. c SUB AX,imm16                  ; o16 2D iw            [8086]
  1963. c SUB EAX,imm32                 ; o32 2D id            [386]
  1964. c{SUB} performs integer subtraction: it subtracts its second
  1965. operand from its first, and leaves the result in its destination
  1966. (first) operand. The flags are set according to the result of the
  1967. operation: in particular, the carry flag is affected and can be used
  1968. by a subsequent c{SBB} instruction (k{insSBB}).
  1969. In the forms with an 8-bit immediate second operand and a longer
  1970. first operand, the second operand is considered to be signed, and is
  1971. sign-extended to the length of the first operand. In these cases,
  1972. the c{BYTE} qualifier is necessary to force NASM to generate this
  1973. form of the instruction.
  1974. H{insTEST} ic{TEST}: Test Bits (notional bitwise AND)
  1975. c TEST r/m8,reg8                ; 84 /r                [8086]
  1976. c TEST r/m16,reg16              ; o16 85 /r            [8086]
  1977. c TEST r/m32,reg32              ; o32 85 /r            [386]
  1978. c TEST r/m8,imm8                ; F6 /7 ib             [8086]
  1979. c TEST r/m16,imm16              ; o16 F7 /7 iw         [8086]
  1980. c TEST r/m32,imm32              ; o32 F7 /7 id         [386]
  1981. c TEST AL,imm8                  ; A8 ib                [8086]
  1982. c TEST AX,imm16                 ; o16 A9 iw            [8086]
  1983. c TEST EAX,imm32                ; o32 A9 id            [386]
  1984. c{TEST} performs a `mental' bitwise AND of its two operands, and
  1985. affects the flags as if the operation had taken place, but does not
  1986. store the result of the operation anywhere.
  1987. H{insUMOV} ic{UMOV}: User Move Data
  1988. c UMOV r/m8,reg8                ; 0F 10 /r             [386,UNDOC]
  1989. c UMOV r/m16,reg16              ; o16 0F 11 /r         [386,UNDOC]
  1990. c UMOV r/m32,reg32              ; o32 0F 11 /r         [386,UNDOC]
  1991. c UMOV reg8,r/m8                ; 0F 12 /r             [386,UNDOC]
  1992. c UMOV reg16,r/m16              ; o16 0F 13 /r         [386,UNDOC]
  1993. c UMOV reg32,r/m32              ; o32 0F 13 /r         [386,UNDOC]
  1994. This undocumented instruction is used by in-circuit emulators to
  1995. access user memory (as opposed to host memory). It is used just like
  1996. an ordinary memory/register or register/register c{MOV}
  1997. instruction, but accesses user space.
  1998. H{insVERR} ic{VERR}, ic{VERW}: Verify Segment Readability/Writability
  1999. c VERR r/m16                    ; 0F 00 /4             [286,PRIV]
  2000. c VERW r/m16                    ; 0F 00 /5             [286,PRIV]
  2001. c{VERR} sets the zero flag if the segment specified by the selector
  2002. in its operand can be read from at the current privilege level.
  2003. c{VERW} sets the zero flag if the segment can be written.
  2004. H{insWAIT} ic{WAIT}: Wait for Floating-Point Processor
  2005. c WAIT                          ; 9B                   [8086]
  2006. c{WAIT}, on 8086 systems with a separate 8087 FPU, waits for the
  2007. FPU to have finished any operation it is engaged in before
  2008. continuing main processor operations, so that (for example) an FPU
  2009. store to main memory can be guaranteed to have completed before the
  2010. CPU tries to read the result back out.
  2011. On higher processors, c{WAIT} is unnecessary for this purpose, and
  2012. it has the alternative purpose of ensuring that any pending unmasked
  2013. FPU exceptions have happened before execution continues.
  2014. H{insWBINVD} ic{WBINVD}: Write Back and Invalidate Cache
  2015. c WBINVD                        ; 0F 09                [486]
  2016. c{WBINVD} invalidates and empties the processor's internal caches,
  2017. and causes the processor to instruct external caches to do the same.
  2018. It writes the contents of the caches back to memory first, so no
  2019. data is lost. To flush the caches quickly without bothering to write
  2020. the data back first, use c{INVD} (k{insINVD}).
  2021. H{insWRMSR} ic{WRMSR}: Write Model-Specific Registers
  2022. c WRMSR                         ; 0F 30                [PENT]
  2023. c{WRMSR} writes the value in c{EDX:EAX} to the processor
  2024. Model-Specific Register (MSR) whose index is stored in c{ECX}. See
  2025. also c{RDMSR} (k{insRDMSR}).
  2026. H{insXADD} ic{XADD}: Exchange and Add
  2027. c XADD r/m8,reg8                ; 0F C0 /r             [486]
  2028. c XADD r/m16,reg16              ; o16 0F C1 /r         [486]
  2029. c XADD r/m32,reg32              ; o32 0F C1 /r         [486]
  2030. c{XADD} exchanges the values in its two operands, and then adds
  2031. them together and writes the result into the destination (first)
  2032. operand. This instruction can be used with a c{LOCK} prefix for
  2033. multi-processor synchronisation purposes.
  2034. H{insXBTS} ic{XBTS}: Extract Bit String
  2035. c XBTS reg16,r/m16              ; o16 0F A6 /r         [386,UNDOC]
  2036. c XBTS reg32,r/m32              ; o32 0F A6 /r         [386,UNDOC]
  2037. No clear documentation seems to be available for this instruction:
  2038. the best I've been able to find reads `Takes a string of bits from
  2039. the first operand and puts them in the second operand'. It is
  2040. present only in early 386 processors, and conflicts with the opcodes
  2041. for c{CMPXCHG486}. NASM supports it only for completeness. Its
  2042. counterpart is c{IBTS} (see k{insIBTS}).
  2043. H{insXCHG} ic{XCHG}: Exchange
  2044. c XCHG reg8,r/m8                ; 86 /r                [8086]
  2045. c XCHG reg16,r/m8               ; o16 87 /r            [8086]
  2046. c XCHG reg32,r/m32              ; o32 87 /r            [386]
  2047. c XCHG r/m8,reg8                ; 86 /r                [8086]
  2048. c XCHG r/m16,reg16              ; o16 87 /r            [8086]
  2049. c XCHG r/m32,reg32              ; o32 87 /r            [386]
  2050. c XCHG AX,reg16                 ; o16 90+r             [8086]
  2051. c XCHG EAX,reg32                ; o32 90+r             [386]
  2052. c XCHG reg16,AX                 ; o16 90+r             [8086]
  2053. c XCHG reg32,EAX                ; o32 90+r             [386]
  2054. c{XCHG} exchanges the values in its two operands. It can be used
  2055. with a c{LOCK} prefix for purposes of multi-processor
  2056. synchronisation.
  2057. c{XCHG AX,AX} or c{XCHG EAX,EAX} (depending on the c{BITS}
  2058. setting) generates the opcode c{90h}, and so is a synonym for
  2059. c{NOP} (k{insNOP}).
  2060. H{insXLATB} ic{XLATB}: Translate Byte in Lookup Table
  2061. c XLATB                         ; D7                   [8086]
  2062. c{XLATB} adds the value in c{AL}, treated as an unsigned byte, to
  2063. c{BX} or c{EBX}, and loads the byte from the resulting address (in
  2064. the segment specified by c{DS}) back into c{AL}.
  2065. The base register used is c{BX} if the address size is 16 bits, and
  2066. c{EBX} if it is 32 bits. If you need to use an address size not
  2067. equal to the current c{BITS} setting, you can use an explicit
  2068. ic{a16} or ic{a32} prefix.
  2069. The segment register used to load from c{[BX+AL]} or c{[EBX+AL]}
  2070. can be overridden by using a segment register name as a prefix (for
  2071. example, c{es xlatb}).
  2072. H{insXOR} ic{XOR}: Bitwise Exclusive OR
  2073. c XOR r/m8,reg8                 ; 30 /r                [8086]
  2074. c XOR r/m16,reg16               ; o16 31 /r            [8086]
  2075. c XOR r/m32,reg32               ; o32 31 /r            [386]
  2076. c XOR reg8,r/m8                 ; 32 /r                [8086]
  2077. c XOR reg16,r/m16               ; o16 33 /r            [8086]
  2078. c XOR reg32,r/m32               ; o32 33 /r            [386]
  2079. c XOR r/m8,imm8                 ; 80 /6 ib             [8086]
  2080. c XOR r/m16,imm16               ; o16 81 /6 iw         [8086]
  2081. c XOR r/m32,imm32               ; o32 81 /6 id         [386]
  2082. c XOR r/m16,imm8                ; o16 83 /6 ib         [8086]
  2083. c XOR r/m32,imm8                ; o32 83 /6 ib         [386]
  2084. c XOR AL,imm8                   ; 34 ib                [8086]
  2085. c XOR AX,imm16                  ; o16 35 iw            [8086]
  2086. c XOR EAX,imm32                 ; o32 35 id            [386]
  2087. c{XOR} performs a bitwise XOR operation between its two operands
  2088. (i.e. each bit of the result is 1 if and only if exactly one of the
  2089. corresponding bits of the two inputs was 1), and stores the result
  2090. in the destination (first) operand.
  2091. In the forms with an 8-bit immediate second operand and a longer
  2092. first operand, the second operand is considered to be signed, and is
  2093. sign-extended to the length of the first operand. In these cases,
  2094. the c{BYTE} qualifier is necessary to force NASM to generate this
  2095. form of the instruction.
  2096. The MMX instruction c{PXOR} (see k{insPXOR}) performs the same
  2097. operation on the 64-bit MMX registers.