Changeset 103993 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 21, 2024 5:59:07 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
r103953 r103993 404 404 */ 405 405 /* Simple labels comes first for indexing reasons. RaiseXx is order by the exception's numerical value(s). */ 406 kIemNativeLabelType_RaiseDe, /**< Raise (throw) X86_XCPT_DE (00h). */ 407 kIemNativeLabelType_RaiseUd, /**< Raise (throw) X86_XCPT_UD (06h). */ 408 kIemNativeLabelType_RaiseSseRelated, /**< Raise (throw) X86_XCPT_UD or X86_XCPT_NM according to cr0 & cr4. */ 409 kIemNativeLabelType_RaiseAvxRelated, /**< Raise (throw) X86_XCPT_UD or X86_XCPT_NM according to xcr0, cr0 & cr4. */ 410 kIemNativeLabelType_RaiseNm, /**< Raise (throw) X86_XCPT_NM (07h). */ 411 kIemNativeLabelType_RaiseGp0, /**< Raise (throw) X86_XCPT_GP (0dh) w/ errcd=0. */ 412 kIemNativeLabelType_RaiseMf, /**< Raise (throw) X86_XCPT_MF (10h). */ 413 kIemNativeLabelType_RaiseXf, /**< Raise (throw) X86_XCPT_XF (13h). */ 406 kIemNativeLabelType_RaiseDe, /**< Raise (throw) X86_XCPT_DE (00h). */ 407 kIemNativeLabelType_RaiseUd, /**< Raise (throw) X86_XCPT_UD (06h). */ 408 kIemNativeLabelType_RaiseSseRelated, /**< Raise (throw) X86_XCPT_UD or X86_XCPT_NM according to cr0 & cr4. */ 409 kIemNativeLabelType_RaiseAvxRelated, /**< Raise (throw) X86_XCPT_UD or X86_XCPT_NM according to xcr0, cr0 & cr4. */ 410 kIemNativeLabelType_RaiseSseAvxFpRelated, /**< Raise (throw) X86_XCPT_UD or X86_XCPT_XF according to c4. */ 411 kIemNativeLabelType_RaiseNm, /**< Raise (throw) X86_XCPT_NM (07h). */ 412 kIemNativeLabelType_RaiseGp0, /**< Raise (throw) X86_XCPT_GP (0dh) w/ errcd=0. */ 413 kIemNativeLabelType_RaiseMf, /**< Raise (throw) X86_XCPT_MF (10h). */ 414 kIemNativeLabelType_RaiseXf, /**< Raise (throw) X86_XCPT_XF (13h). */ 414 415 kIemNativeLabelType_ObsoleteTb, 415 416 kIemNativeLabelType_NeedCsLimChecking,
Note:
See TracChangeset
for help on using the changeset viewer.