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

  1. <VERR>
  2. <VERW>
  3. [1]
  4. "VERR, VERW: Verify a Segment for Reading or Writing"
  5. ""
  6. "Verifies whether the code or data segment specified with the source operand is readable (VERR) or writable (VERW) from the current privilege level (CPL). The source operand is a 16-bit register or a memory location that contains the segment selector for the segment to be verified. If the segment is accessible and readable (VERR) or writable (VERW), the ZF flag is set; otherwise, the ZF flag is cleared. Code segments are never verified as writable. This check cannot be performed on system segments."
  7. "To set the ZF flag, the following conditions must be met:"
  8. ""
  9. "ò The segment selector is not null."
  10. "ò The selector must denote a descriptor within the bounds of the descriptor table (GDT or LDT)."
  11. "ò The selector must denote the descriptor of a code or data segment (not that of a system segment or gate)."
  12. "ò For the VERR instruction, the segment must be readable."
  13. "ò For the VERW instruction, the segment must be a writable data segment."
  14. "ò If the segment is not a conforming code segment, the segmentÆs DPL must be greater than or equal to (have less or the same privilege as) both the CPL and the segment selector's RPL."
  15. ""
  16. "The validation performed is the same as is performed when a segment selector is loaded into the DS, ES, FS, or GS register, and the indicated access (read or write) is performed. The segment selector's value cannot result in a protection exception, enabling the software to anticipate possible segment access problems."
  17. [2]
  18. "IF SRC(Offset) > (GDTR(Limit) OR (LDTR(Limit))"
  19. "THEN
  20. "ZF ¼ 0"
  21. "Read segment descriptor;"
  22. "IF SegmentDescriptor(DescriptorType) = 0 (* system segment *)"
  23. "OR (SegmentDescriptor(Type) ╣ conforming code segment)"
  24. "AND (CPL > DPL) OR (RPL > DPL)"
  25. "THEN"
  26. "ZF ¼ 0"
  27. "ELSE"
  28. "IF ((Instruction = VERR) AND (segment = readable))"
  29. "OR ((Instruction = VERW) AND (segment = writable))"
  30. "THEN"
  31. "ZF ¼ 1;"
  32. "FI;"
  33. "FI;"
  34. [3]
  35. "The ZF flag is set to 1 if the segment is accessible and readable (VERR) or writable (VERW); otherwise, it is cleared to 0."
  36. [4]
  37. "Protected Mode Exceptions"
  38. ""
  39. "The only exceptions generated for these instructions are those related to illegal addressing of the source operand."
  40. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register is used to access memory and it contains a null segment selector."
  41. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  42. "#PF(fault-code) If a page fault occurs."
  43. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  44. ""
  45. "Real-Address Mode Exceptions"
  46. ""
  47. "#UD The VERR and VERW instructions are not recognized in real-address mode."
  48. ""
  49. "Virtual-8086 Mode Exceptions"
  50. ""
  51. "#UD The VERR and VERW instructions are not recognized in virtual-8086 mode."
  52. [5]
  53. "0F 00 /4 VERR r/m16 Set ZF=1 if segment specified with r/m16 can be read"
  54. "0F 00 /5 VERW r/m16 Set ZF=1 if segment specified with r/m16 can be written"
  55. [6]
  56. </VERR>
  57. </VERW>