home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 December / PCWorld_2001-12_cd.bin / Software / Topware / Hackman / _SETUP.1 / ModuleJ.dat < prev    next >
Text File  |  1998-09-13  |  23KB  |  366 lines

  1. <JA>
  2. <JAE>
  3. <JB>
  4. <JBE>
  5. <JC>
  6. <JCXZ>
  7. <JECXZ>
  8. <JE>
  9. <JG>
  10. <JGE>
  11. <JL>
  12. <JLE>
  13. <JNA>
  14. <JNAE>
  15. <JNB>
  16. <JNBE>
  17. <JNC>
  18. <JNE>
  19. <JNG>
  20. <JNGE>
  21. <JNL>
  22. <JNLE>
  23. <JNO>
  24. <JNP>
  25. <JNS>
  26. <JNZ>
  27. <JO>
  28. <JP>
  29. <JPE>
  30. <JPO>
  31. <JS>
  32. <JZ>
  33. [1]
  34. "J cc: Jump if Condition Is Met"
  35. ""
  36. "Checks the state of one or more of the status flags in the EFLAGS register (CF, OF, PF, SF, and ZF) and, if the flags are in the specified state (condition), performs a jump to the target instruction specified by the destination operand. A condition code (cc) is associated with each instruction to indicate the condition being tested for. If the condition is not satisfied, the jump is not performed and execution continues with the instruction following the Jcc instruction."
  37. "The target instruction is specified with a relative offset (a signed offset relative to the current value of the instruction pointer in the EIP register). A relative offset (rel8, rel16, or rel32) is generally specified as a label in assembly code, but at the machine code level, it is encoded as a signed, 8-bit or 32-bit immediate value, which is added to the instruction pointer. Instruction coding is most efficient for offsets of û128 to +127. If the operand-size attribute is 16, the upper two bytes of the EIP register are cleared to 0s, resulting in a maximum instruction pointer size of 16 bits."
  38. "The conditions for each Jcc mnemonic are given in the ôDescriptionö column of the table on the preceding page. The terms ôlessö and ôgreaterö are used for comparisons of signed integers and the terms ôaboveö and ôbelowö are used for unsigned integers."
  39. "Because a particular state of the status flags can sometimes be interpreted in two ways, two mnemonics are defined for some opcodes. For example, the JA (jump if above) instruction and the JNBE (jump if not below or equal) instruction are alternate mnemonics for the opcode 77H. The Jcc instruction does not support far jumps (jumps to other code segments). When the target for the conditional jump is in a different segment, use the opposite condition from the condition being tested for the Jcc instruction, and then access the target with an unconditional far jump (JMP instruction) to the other segment. For example, the following conditional far jump is illegal:"
  40. ""
  41. "JZ FARLABEL;"
  42. ""
  43. "To accomplish this far jump, use the following two instructions:"
  44. ""
  45. "JNZ BEYOND;"
  46. "JMP FARLABEL;"
  47. "BEYOND:"
  48. ""
  49. "The JECXZ and JCXZ instructions differs from the other Jcc instructions because they do not check the status flags. Instead they check the contents of the ECX and CX registers, respectively, for 0. Either the CX or ECX register is chosen according to the address-size attribute. These instructions are useful at the beginning of a conditional loop that terminates with a conditional loop instruction (such as LOOPNE). They prevent entering the loop when the ECX or CX register is equal to 0, which would cause the loop to execute 2 32 or 64K times, respectively, instead of zero times. All conditional jumps are converted to code fetches of one or two cache lines, regardless of jump address or cacheability."
  50. [2]
  51. "IF condition"
  52. "THEN"
  53. "EIP ¼ EIP + SignExtend(DEST);"
  54. "IF OperandSize = 16"
  55. "THEN"
  56. "EIP ¼ EIP AND 0000FFFFH;"
  57. "FI;"
  58. "FI;"
  59. [3]
  60. "None."
  61. [4]
  62. "Protected Mode Exceptions"
  63. ""
  64. "#GP(0) If the offset being jumped to is beyond the limits of the CS segment."
  65. ""
  66. "Real-Address Mode Exceptions"
  67. ""
  68. "#GP If the offset being jumped to is beyond the limits of the CS segment or is outside of the effective address space from 0 to FFFFH. This condition can occur if 32-address size override prefix is used."
  69. ""
  70. "Virtual-8086 Mode Exceptions"
  71. ""
  72. "#GP(0) If the offset being jumped to is beyond the limits of the CS segment or is outside of the effective address space from 0 to FFFFH. This condition can occur if 32-address size override prefix is used."
  73. [5]
  74. "77 cb JA rel8 Jump short if above (CF=0 and ZF=0)"
  75. "73 cb JAE rel8 Jump short if above or equal (CF=0)"
  76. "72 cb JB rel8 Jump short if below (CF=1)"
  77. "76 cb JBE rel8 Jump short if below or equal (CF=1 or ZF=1)"
  78. "72 cb JC rel8 Jump short if carry (CF=1)"
  79. "E3 cb JCXZ rel8 Jump short if CX register is 0"
  80. "E3 cb JECXZ rel8 Jump short if ECX register is 0"
  81. "74 cb JE rel8 Jump short if equal (ZF=1)"
  82. "7F cb JG rel8 Jump short if greater (ZF=0 and SF=OF)"
  83. "7D cb JGE rel8 Jump short if greater or equal (SF=OF)"
  84. "7C cb JL rel8 Jump short if less (SF<>OF)"
  85. "7E cb JLE rel8 Jump short if less or equal (ZF=1 or SF<>OF)"
  86. "76 cb JNA rel8 Jump short if not above (CF=1 or ZF=1)"
  87. "72 cb JNAE rel8 Jump short if not above or equal (CF=1)"
  88. "73 cb JNB rel8 Jump short if not below (CF=0)"
  89. "77 cb JNBE rel8 Jump short if not below or equal (CF=0 and ZF=0)"
  90. "73 cb JNC rel8 Jump short if not carry (CF=0)"
  91. "75 cb JNE rel8 Jump short if not equal (ZF=0)"
  92. "7E cb JNG rel8 Jump short if not greater (ZF=1 or SF<>OF)"
  93. "7C cb JNGE rel8 Jump short if not greater or equal (SF<>OF)"
  94. "7D cb JNL rel8 Jump short if not less (SF=OF)"
  95. "7F cb JNLE rel8 Jump short if not less or equal (ZF=0 and SF=OF)"
  96. "71 cb JNO rel8 Jump short if not overflow (OF=0)"
  97. "7B cb JNP rel8 Jump short if not parity (PF=0)"
  98. "79 cb JNS rel8 Jump short if not sign (SF=0)"
  99. "75 cb JNZ rel8 Jump short if not zero (ZF=0)"
  100. "70 cb JO rel8 Jump short if overflow (OF=1)"
  101. "7A cb JP rel8 Jump short if parity (PF=1)"
  102. "7A cb JPE rel8 Jump short if parity even (PF=1)"
  103. "7B cb JPO rel8 Jump short if parity odd (PF=0)"
  104. "78 cb JS rel8 Jump short if sign (SF=1)"
  105. "74 cb JZ rel8 Jump short if zero (ZF = 1)"
  106. "0F 87 cw/cd JA rel16/32 Jump near if above (CF=0 and ZF=0)"
  107. "0F 83 cw/cd JAE rel16/32 Jump near if above or equal (CF=0)"
  108. "0F 82 cw/cd JB rel16/32 Jump near if below (CF=1)"
  109. "0F 86 cw/cd JBE rel16/32 Jump near if below or equal (CF=1 or ZF=1)"
  110. "0F 82 cw/cd JC rel16/32 Jump near if carry (CF=1)"
  111. "0F 84 cw/cd JE rel16/32 Jump near if equal (ZF=1)"
  112. "0F 84 cw/cd JZ rel16/32 Jump near if 0 (ZF=1)"
  113. "0F 8F cw/cd JG rel16/32 Jump near if greater (ZF=0 and SF=OF)"
  114. "0F 8D cw/cd JGE rel16/32 Jump near if greater or equal (SF=OF)"
  115. "0F 8C cw/cd JL rel16/32 Jump near if less (SF<>OF)"
  116. "0F 8E cw/cd JLE rel16/32 Jump near if less or equal (ZF=1 or SF<>OF)"
  117. "0F 86 cw/cd JNA rel16/32 Jump near if not above (CF=1 or ZF=1)"
  118. "0F 82 cw/cd JNAE rel16/32 Jump near if not above or equal (CF=1)"
  119. "0F 83 cw/cd JNB rel16/32 Jump near if not below (CF=0)"
  120. "0F 87 cw/cd JNBE rel16/32 Jump near if not below or equal (CF=0 and ZF=0)"
  121. "0F 83 cw/cd JNC rel16/32 Jump near if not carry (CF=0)"
  122. "0F 85 cw/cd JNE rel16/32 Jump near if not equal (ZF=0)"
  123. "0F 8E cw/cd JNG rel16/32 Jump near if not greater (ZF=1 or SF<>OF)"
  124. "0F 8C cw/cd JNGE rel16/32 Jump near if not greater or equal (SF<>OF)"
  125. "0F 8D cw/cd JNL rel16/32 Jump near if not less (SF=OF)"
  126. "0F 8F cw/cd JNLE rel16/32 Jump near if not less or equal (ZF=0 and SF=OF)"
  127. "0F 81 cw/cd JNO rel16/32 Jump near if not overflow (OF=0)"
  128. "0F 8B cw/cd JNP rel16/32 Jump near if not parity (PF=0)"
  129. "0F 89 cw/cd JNS rel16/32 Jump near if not sign (SF=0)"
  130. "0F 85 cw/cd JNZ rel16/32 Jump near if not zero (ZF=0)"
  131. "0F 80 cw/cd JO rel16/32 Jump near if overflow (OF=1)"
  132. "0F 8A cw/cd JP rel16/32 Jump near if parity (PF=1)"
  133. "0F 8A cw/cd JPE rel16/32 Jump near if parity even (PF=1)"
  134. "0F 8B cw/cd JPO rel16/32 Jump near if parity odd (PF=0)"
  135. "0F 88 cw/cd JS rel16/32 Jump near if sign (SF=1)"
  136. "0F 84 cw/cd JZ rel16/32 Jump near if 0 (ZF=1)"
  137. [6]
  138. </JA>
  139. </JAE>
  140. </JB>
  141. </JBE>
  142. </JC>
  143. </JCXZ>
  144. </JECXZ>
  145. </JE>
  146. </JG>
  147. </JGE>
  148. </JL>
  149. </JLE>
  150. </JNA>
  151. </JNAE>
  152. </JNB>
  153. </JNBE>
  154. </JNC>
  155. </JNE>
  156. </JNG>
  157. </JNGE>
  158. </JNL>
  159. </JNLE>
  160. </JNO>
  161. </JNP>
  162. </JNS>
  163. </JNZ>
  164. </JO>
  165. </JP>
  166. </JPE>
  167. </JPO>
  168. </JS>
  169. </JZ>
  170. <JMP>
  171. [1]
  172. "JMP: Jump"
  173. ""
  174. "Transfers program control to a different point in the instruction stream without recording return information. The destination (target) operand specifies the address of the instruction being jumped to. This operand can be an immediate value, a general-purpose register, or a memory location."
  175. "This instruction can be used to execute four different types of jumps:"
  176. ""
  177. "ò Near jumpùA jump to an instruction within the current code segment (the segment currently pointed to by the CS register), sometimes referred to as an intrasegment jump."
  178. "ò Short jumpùA near jump where the jump range is limited to û128 to +127 from the current EIP value."
  179. "ò Far jumpùA jump to an instruction located in a different segment than the current code segment but at the same privilege level, sometimes referred to as an intersegment jump."
  180. "ò Task switchùA jump to an instruction located in a different task."
  181. ""
  182. "NOTE: A task switch can only be executed in protected mode."
  183. ""
  184. "Near and Short Jumps."
  185. ""
  186. "When executing a near jump, the processor jumps to the address (within the current code segment) that is specified with the target operand. The target operand specifies either an absolute offset (that is an offset from the base of the code segment) or a relative offset (a signed displacement relative to the current value of the instruction pointer in the EIP register). A near jump to a relative offset of 8-bits (rel8) is referred to as a short jump. The CS register is not changed on near and short jumps."
  187. "An absolute offset is specified indirectly in a general-purpose register or a memory location (r/m16 or r/m32). The operand-size attribute determines the size of the target operand (16 or 32 bits). Absolute offsets are loaded directly into the EIP register. If the operand-size attribute is 16, the upper two bytes of the EIP register are cleared to 0s, resulting in a maximum instruction pointer size of 16 bits."
  188. "A relative offset (rel8, rel16, or rel32) is generally specified as a label in assembly code, but at the machine code level, it is encoded as a signed 8-, 16-, or 32-bit immediate value. This value is added to the value in the EIP register. (Here, the EIP register contains the address of the instruction following the JMP instruction). When using relative offsets, the opcode (for short vs. near jumps) and the operand-size attribute (for near relative jumps) determines the size of the target operand (8, 16, or 32 bits)."
  189. ""
  190. "Far Jumps in Real-Address or Virtual-8086 Mode."
  191. ""
  192. "When executing a far jump in real-address or virtual-8086 mode, the processor jumps to the code segment and offset specified with the target operand. Here the target operand specifies an absolute far address either directly with a pointer (ptr16:16 or ptr16:32) or indirectly with a memory location (m16:16 or m16:32). With the pointer method, the segment and address of the called procedure is encoded in the instruction, using a 4-byte (16-bit operand size) or 6-byte (32-bit operand size) far address immediate."
  193. "With the indirect method, the target operand specifies a memory location that contains a 4-byte (16-bit operand size) or 6-byte (32-bit operand size) far address. The far address is loaded directly into the CS and EIP registers. If the operand-size attribute is 16, the upper two bytes of the EIP register are cleared to 0s."
  194. ""
  195. "Far Jumps in Protected Mode."
  196. ""
  197. "When the processor is operating in protected mode, the JMP instruction can be used to perform the following three types of far jumps:"
  198. ""
  199. "ò A far jump to a conforming or non-conforming code segment."
  200. "ò A far jump through a call gate."
  201. "ò A task switch."
  202. "(The JMP instruction cannot be used to perform interprivilege level far jumps.)"
  203. ""
  204. "In protected mode, the processor always uses the segment selector part of the far address to access the corresponding descriptor in the GDT or LDT. The descriptor type (code segment, call gate, task gate, or TSS) and access rights determine the type of jump to be performed. If the selected descriptor is for a code segment, a far jump to a code segment at the same privilege level is performed. (If the selected code segment is at a different privilege level and the code segment is non-conforming, a general-protection exception is generated.) A far jump to the same privilege level in protected mode is very similar to one carried out in real-address or virtual-8086 mode. The target operand specifies an absolute far address either directly with a pointer (ptr16:16 or ptr16:32) or indirectly with a memory location (m16:16 or m16:32). The operand-size attribute determines the size of the offset (16 or 32 bits) in the far address. The new code segment selector and its descriptor are loaded into CS register, and the offset from the instruction is loaded into the EIP register. Note that a call gate (described in the next paragraph) can also be used to perform far call to a code segment at the same privilege level. Using this mechanism provides an extra level of indirection and is the preferred method of making jumps between 16-bit and 32-bit code segments."
  205. "When executing a far jump through a call gate, the segment selector specified by the target operand identifies the call gate. (The offset part of the target operand is ignored.) The processor then jumps to the code segment specified in the call gate descriptor and begins executing the instruction at the offset specified in the call gate. No stack switch occurs. Here again, the target operand can specify the far address of the call gate either directly with a pointer (ptr16:16 or ptr16:32) or indirectly with a memory location (m16:16 or m16:32). Executing a task switch with the JMP instruction, is somewhat similar to executing a jump through a call gate. Here the target operand specifies the segment selector of the task gate for the task being switched to (and the offset part of the target operand is ignored). The task gate in turn points to the TSS for the task, which contains the segment selectors for the taskÆs code and stack segments. The TSS also contains the EIP value for the next instruction that was to be executed before the task was suspended. This instruction pointer value is loaded into EIP register so that the task begins executing again at this next instruction."
  206. "The JMP instruction can also specify the segment selector of the TSS directly, which eliminates the indirection of the task gate. Note that when you execute at task switch with a JMP instruction, the nested task flag (NT) is not set in the EFLAGS register and the new TSSÆs previous task link field is not loaded with the old taskÆs TSS selector. A return to the previous task can thus not be carried out by executing the IRET instruction. Switching tasks with the JMP instruction differs in this regard from the CALL instruction which does set the NT flag and save the previous task link information, allowing a return to the calling task with an IRET instruction."
  207. [2]
  208. "IF near jump"
  209. "THEN IF near relative jump"
  210. "THEN"
  211. "tempEIP ¼ EIP + DEST; (* EIP is instruction following JMP instruction*)"
  212. "ELSE (* near absolute jump *)"
  213. "tempEIP ¼ DEST;"
  214. "FI;"
  215. "IF tempEIP is beyond code segment limit THEN #GP(0); FI;"
  216. "IF OperandSize = 32"
  217. "THEN"
  218. "EIP ¼ tempEIP;"
  219. "ELSE (* OperandSize=16 *)"
  220. "EIP ¼ tempEIP AND 0000FFFFH;"
  221. "FI;"
  222. "FI:"
  223. "IF far jump AND (PE = 0 OR (PE = 1 AND VM = 1)) (* real-address or virtual-8086 mode *)"
  224. "THEN"
  225. "tempEIP ¼ DEST(offset); (* DEST is ptr16:32 or [ m16:32] *)"
  226. "IF tempEIP is beyond code segment limit THEN #GP(0); FI;"
  227. "CS ¼ DEST(segment selector); (* DEST is ptr16:32 or [ m16:32] *)"
  228. "IF OperandSize = 32"
  229. "THEN"
  230. "EIP ¼ tempEIP; (* DEST is ptr16:32 or [ m16:32] *)"
  231. "ELSE (* OperandSize = 16 *)"
  232. "EIP ¼ tempEIP AND 0000FFFFH; (* clear upper 16 bits *)"
  233. "FI;"
  234. "FI;"
  235. "IF far jump AND (PE = 1 AND VM = 0) (* Protected mode, not virtual-8086 mode *)"
  236. "THEN"
  237. "IF effective address in the CS, DS, ES, FS, GS, or SS segment is illegal"
  238. "OR segment selector in target operand null"
  239. "THEN #GP(0);"
  240. "FI;"
  241. "IF segment selector index not within descriptor table limits"
  242. "THEN #GP(new selector);"
  243. "FI;"
  244. "Read type and access rights of segment descriptor;"
  245. "IF segment type is not a conforming or nonconforming code segment, call gate, task gate, or TSS THEN #GP(segment selector);"
  246. "FI;"
  247. "Depending on type and access rights"
  248. "GO TO CONFORMING-CODE-SEGMENT;"
  249. "GO TO NONCONFORMING-CODE-SEGMENT;"
  250. "GO TO CALL-GATE;"
  251. "GO TO TASK-GATE;"
  252. "GO TO TASK-STATE-SEGMENT;"
  253. "ELSE"
  254. "#GP(segment selector);"
  255. "FI;"
  256. ""
  257. "CONFORMING-CODE-SEGMENT:"
  258. "IF DPL > CPL THEN #GP(segment selector); FI;"
  259. "IF segment not present THEN #NP(segment selector); FI;"
  260. "tempEIP ¼ DEST(offset);"
  261. "IF OperandSize=16"
  262. "THEN tempEIP ¼ tempEIP AND 0000FFFFH;"
  263. "FI;"
  264. "IF tempEIP not in code segment limit THEN #GP(0); FI;"
  265. "CS ¼ DEST(SegmentSelector); (* segment descriptor information also loaded *)"
  266. "CS(RPL) ¼ CPL"
  267. "EIP ¼ tempEIP;"
  268. "END;"
  269. ""
  270. "NONCONFORMING-CODE-SEGMENT:"
  271. "IF (RPL > CPL) OR (DPL ╣ CPL) THEN #GP(code segment selector); FI;"
  272. "IF segment not present THEN #NP(segment selector); FI;"
  273. "IF instruction pointer outside code segment limit THEN #GP(0); FI;"
  274. "tempEIP ¼ DEST(offset);"
  275. "IF OperandSize=16"
  276. "THEN tempEIP ¼ tempEIP AND 0000FFFFH;"
  277. "FI;"
  278. "IF tempEIP not in code segment limit THEN #GP(0); FI;"
  279. "CS ¼ DEST(SegmentSelector); (* segment descriptor information also loaded *)"
  280. "CS(RPL) ¼ CPL"
  281. "EIP ¼ tempEIP;"
  282. "END;"
  283. ""
  284. "CALL-GATE:"
  285. "IF call gate DPL < CPL"
  286. "OR call gate DPL < call gate segment-selector RPL"
  287. "THEN #GP(call gate selector); FI;"
  288. "IF call gate not present THEN #NP(call gate selector); FI;"
  289. "IF call gate code-segment selector is null THEN #GP(0); FI;"
  290. "IF call gate code-segment selector index is outside descriptor table limits THEN #GP(code segment selector); FI;"
  291. "Read code segment descriptor;"
  292. "IF code-segment segment descriptor does not indicate a code segment" 
  293. "OR code-segment segment descriptor is conforming and DPL > CPL"
  294. "OR code-segment segment descriptor is non-conforming and DPL ╣ CPL"
  295. "THEN #GP(code segment selector); FI;"
  296. "IF code segment is not present THEN #NP(code-segment selector); FI;"
  297. "IF instruction pointer is not within code-segment limit THEN #GP(0); FI;"
  298. "tempEIP ¼ DEST(offset);"
  299. "IF GateSize=16"
  300. "THEN tempEIP ¼ tempEIP AND 0000FFFFH;"
  301. "FI;"
  302. "IF tempEIP not in code segment limit THEN #GP(0); FI;"
  303. "CS ¼ DEST(SegmentSelector); (* segment descriptor information also loaded *)"
  304. "CS(RPL) ¼ CPL"
  305. "EIP ¼ tempEIP;"
  306. "END;"
  307. ""
  308. "TASK-GATE:"
  309. "IF task gate DPL < CPL"
  310. "OR task gate DPL < task gate segment-selector RPL"
  311. "THEN #GP(task gate selector); FI;"
  312. "IF task gate not present THEN #NP(gate selector); FI;"
  313. "Read the TSS segment selector in the task-gate descriptor;"
  314. "IF TSS segment selector local/global bit is set to local"
  315. "OR index not within GDT limits"
  316. "OR TSS descriptor specifies that the TSS is busy"
  317. "THEN #GP(TSS selector); FI;"
  318. "IF TSS not present THEN #NP(TSS selector); FI;"
  319. "SWITCH-TASKS to TSS;"
  320. "IF EIP not within code segment limit THEN #GP(0); FI;"
  321. "END;"
  322. ""
  323. "TASK-STATE-SEGMENT:"
  324. "IF TSS DPL < CPL"
  325. "OR TSS DPL < TSS segment-selector RPL"
  326. "OR TSS descriptor indicates TSS not available"
  327. "THEN #GP(TSS selector); FI;"
  328. "IF TSS is not present THEN #NP(TSS selector); FI;"
  329. "SWITCH-TASKS to TSS"
  330. "IF EIP not within code segment limit THEN #GP(0); FI;"
  331. "END;"
  332. [3]
  333. "All flags are affected if a task switch occurs; no flags are affected if a task switch does not occur."
  334. [4]
  335. "Protected Mode Exceptions"
  336. ""
  337. "#GP(0) If offset in target operand, call gate, or TSS is beyond the code segment limits. If the segment selector in the destination operand, call gate, task gate, or TSS is null. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register is used to access memory and it contains a null segment selector."
  338. "#GP(selector) If segment selector index is outside descriptor table limits. If the segment descriptor pointed to by the segment selector in the destination operand is not for a conforming-code segment, nonconforming-code segment, call gate, task gate, or task state segment. If the DPL for a nonconforming-code segment is not equal to the CPL (When not using a call gate.) If the RPL for the segmentÆs segment selector is greater than the CPL. If the DPL for a conforming-code segment is greater than the CPL. If the DPL from a call-gate, task-gate, or TSS segment descriptor is less than the CPL or than the RPL of the call-gate, task-gate, or TSSÆs segment selector. If the segment descriptor for selector in a call gate does not indicate it is a code segment. If the segment descriptor for the segment selector in a task gate does not indicate available TSS. If the segment selector for a TSS has its local/global bit set for local. If a TSS segment descriptor specifies that the TSS is busy or not available."
  339. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  340. "#NP (selector) If the code segment being accessed is not present. If call gate, task gate, or TSS not present."
  341. "#PF(fault-code) If a page fault occurs."
  342. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3. (Only occurs when fetching target from memory.)"
  343. ""
  344. "Real-Address Mode Exceptions"
  345. ""
  346. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  347. "#SS If a memory operand effective address is outside the SS segment limit."
  348. ""
  349. "Virtual-8086 Mode Exceptions"
  350. ""
  351. "#GP(0) If the target operand is beyond the code segment limits. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  352. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  353. "#PF(fault-code) If a page fault occurs."
  354. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made. (Only occurs when fetching target from memory.)"
  355. [5]
  356. "EB cb JMP rel8 Jump short, relative, displacement relative to next instruction"
  357. "E9 cw JMP rel16 Jump near, relative, displacement relative to next instruction"
  358. "E9 cd JMP rel32 Jump near, relative, displacement relative to next instruction"
  359. "FF /4 JMP r/m16 Jump near, absolute indirect, address given in r/m16"
  360. "FF /4 JMP r/m32 Jump near, absolute indirect, address given in r/m32"
  361. "EA cd JMP ptr16:16 Jump far, absolute, address given in operand"
  362. "EA cp JMP ptr16:32 Jump far, absolute, address given in operand"
  363. "FF /5 JMP m16:16 Jump far, absolute indirect, address given in m16:16"
  364. "FF /5 JMP m16:32 Jump far, absolute indirect, address given in m16:32"
  365. [6]
  366. </JMP>