Changeset 80174 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Aug 7, 2019 9:41:39 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132615
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r80172 r80174 1116 1116 #define PGM_PAGE_HAS_ACTIVE_PHYSICAL_HANDLERS(a_pPage) \ 1117 1117 ( PGM_PAGE_GET_HNDL_PHYS_STATE(a_pPage) >= PGM_PAGE_HNDL_PHYS_STATE_WRITE ) 1118 1119 1120 /** @name Virtual Access Handler State values (PGMPAGE::u2HandlerVirtStateY).1121 *1122 * @remarks The values are assigned in order of priority, so we can calculate1123 * the correct state for a page with different handlers installed.1124 * @{ */1125 /** No handler installed. */1126 #define PGM_PAGE_HNDL_VIRT_STATE_NONE 01127 /* 1 is reserved so the lineup is identical with the physical ones. */1128 /** Write access is monitored. */1129 #define PGM_PAGE_HNDL_VIRT_STATE_WRITE 21130 /** All access is monitored. */1131 #define PGM_PAGE_HNDL_VIRT_STATE_ALL 31132 /** @} */1133 1134 /**1135 * Gets the virtual access handler state of a page.1136 * @returns PGM_PAGE_HNDL_VIRT_STATE_* value.1137 * @param a_pPage Pointer to the physical guest page tracking structure.1138 */1139 #define PGM_PAGE_GET_HNDL_VIRT_STATE(a_pPage) ( (a_pPage)->s.u2HandlerVirtStateY )1140 1141 /**1142 * Sets the virtual access handler state of a page.1143 * @param a_pPage Pointer to the physical guest page tracking structure.1144 * @param a_uState The new state value.1145 */1146 #define PGM_PAGE_SET_HNDL_VIRT_STATE(a_pPage, a_uState) \1147 do { (a_pPage)->s.u2HandlerVirtStateY = (a_uState); } while (0)1148 1149 /**1150 * Same as PGM_PAGE_HAS_ANY_VIRTUAL_HANDLERS - can't disable pages in1151 * virtual handlers.1152 * @returns true/false1153 * @param a_pPage Pointer to the physical guest page tracking structure.1154 */1155 #define PGM_PAGE_HAS_ACTIVE_VIRTUAL_HANDLERS(a_pPage) \1156 PGM_PAGE_HAS_ANY_VIRTUAL_HANDLERS(a_pPage)1157 1118 1158 1119
Note:
See TracChangeset
for help on using the changeset viewer.