Changeset 102663 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Dec 21, 2023 1:55:07 AM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160825
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r102603 r102663 700 700 #define IEM_F_MODE_X86_64BIT UINT32_C(0x0000000a) 701 701 702 /** X86 Mode: Checks if @a a_fExec represent a FLAT mode. */ 703 #define IEM_F_MODE_X86_IS_FLAT(a_fExec) ( ((a_fExec) & IEM_F_MODE_MASK) == IEM_F_MODE_X86_64BIT \ 704 || ((a_fExec) & IEM_F_MODE_MASK) == IEM_F_MODE_X86_32BIT_PROT_FLAT \ 705 || ((a_fExec) & IEM_F_MODE_MASK) == IEM_F_MODE_X86_32BIT_FLAT) 702 706 703 707 /** Bypass access handlers when set. */ … … 1391 1395 RTGCPHYS GCPhysInstrBuf; /* 0x20 */ 1392 1396 /** The number of bytes available at pbInstrBuf in total (for IEMExecLots). 1393 * This takes the CS segment limit into account. */ 1397 * This takes the CS segment limit into account. 1398 * @note Set to zero when the code TLB is flushed to trigger TLB reload. */ 1394 1399 uint16_t cbInstrBufTotal; /* 0x28 */ 1395 1400 # ifndef IEM_WITH_OPAQUE_DECODER_STATE … … 5627 5632 5628 5633 5634 IEM_DECL_IEMTHREADEDFUNC_PROTO(iemThreadedFunc_BltIn_Nop); 5635 IEM_DECL_IEMTHREADEDFUNC_PROTO(iemThreadedFunc_BltIn_LogCpuState); 5636 5629 5637 IEM_DECL_IEMTHREADEDFUNC_PROTO(iemThreadedFunc_BltIn_DeferToCImpl0); 5630 5638 -
trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
r102634 r102663 312 312 kIemNativeLabelType_ObsoleteTb, 313 313 kIemNativeLabelType_NeedCsLimChecking, 314 kIemNativeLabelType_CheckBranchMiss, 314 315 /* Labels with data, potentially multiple instances per TB: */ 315 316 kIemNativeLabelType_FirstWithMultipleInstances, … … 838 839 uint64_t uParam0, uint64_t uParam1, uint64_t uParam2); 839 840 841 IEM_DECL_IEMNATIVERECOMPFUNC_PROTO(iemNativeRecompFunc_BltIn_Nop); 842 IEM_DECL_IEMNATIVERECOMPFUNC_PROTO(iemNativeRecompFunc_BltIn_LogCpuState); 840 843 IEM_DECL_IEMNATIVERECOMPFUNC_PROTO(iemNativeRecompFunc_BltIn_DeferToCImpl0); 841 844 IEM_DECL_IEMNATIVERECOMPFUNC_PROTO(iemNativeRecompFunc_BltIn_CheckIrq);
Note:
See TracChangeset
for help on using the changeset viewer.