Changeset 108370 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Feb 25, 2025 1:26:43 PM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 167731
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r108369 r108370 1284 1284 /** Get the first lookup table index from IEMTHRDEDCALLENTRY::uTbLookup. */ 1285 1285 #define IEM_TB_LOOKUP_TAB_GET_IDX(a_uTbLookup) ((a_uTbLookup) & 0x7f) 1286 /** Get the lookup table index from IEMTHRDEDCALLENTRY::uTbLookup and RIP. */1287 #define IEM_TB_LOOKUP_TAB_GET_IDX_WITH_ RIP(a_uTbLookup, a_Rip) \1288 (!((a_uTbLookup) & 0x80) ? (a_uTbLookup) & 0x7f : ((a_uTbLookup) & 0x7f) + ((a_ Rip) & (IEM_TB_LOOKUP_TAB_LARGE_SIZE - 1)) )1286 /** Get the lookup table index from IEMTHRDEDCALLENTRY::uTbLookup and PC. */ 1287 #define IEM_TB_LOOKUP_TAB_GET_IDX_WITH_PC(a_uTbLookup, a_Pc) \ 1288 (!((a_uTbLookup) & 0x80) ? (a_uTbLookup) & 0x7f : ((a_uTbLookup) & 0x7f) + ((a_Pc) & (IEM_TB_LOOKUP_TAB_LARGE_SIZE - 1)) ) 1289 1289 1290 1290 /** Make a IEMTHRDEDCALLENTRY::uTbLookup value. */
Note:
See TracChangeset
for help on using the changeset viewer.