Changeset 101704 in vbox for trunk/include
- Timestamp:
- Nov 1, 2023 11:47:07 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r101682 r101704 2502 2502 * pending FFs. The status code is internal to IEM. */ 2503 2503 #define VINF_IEM_YIELD_PENDING_FF (5306) 2504 2504 2505 /** Recompiled execution: Break out of current TB execution. */ 2505 2506 #define VINF_IEM_REEXEC_BREAK (5310) 2507 /** Recompiled execution: Debug related (hidden) EFLAGS are set and needs 2508 * handling. */ 2509 #define VINF_IEM_REEXEC_FINISH_WITH_FLAGS (5311) 2510 2506 2511 /** Recompilation: End translation block. */ 2507 #define VINF_IEM_RECOMPILE_END_TB (531 1)2512 #define VINF_IEM_RECOMPILE_END_TB (5319) 2508 2513 /** Recompiler: Translation block allocation failed. */ 2509 #define VERR_IEM_TB_ALLOC_FAILED (-53 12)2514 #define VERR_IEM_TB_ALLOC_FAILED (-5320) 2510 2515 /** Recompiler: Too deeply nested conditionals. */ 2511 #define VERR_IEM_COND_TOO_DEEPLY_NESTED (-53 13)2516 #define VERR_IEM_COND_TOO_DEEPLY_NESTED (-5321) 2512 2517 /** Recompiler: Failed to reconcile the register/variable state on endif. */ 2513 #define VERR_IEM_COND_ENDIF_RECONCILIATION_FAILED (-53 14)2518 #define VERR_IEM_COND_ENDIF_RECONCILIATION_FAILED (-5322) 2514 2519 /** Recompiler: Failed to allocate more memory for debug info. */ 2515 #define VERR_IEM_DBGINFO_OUT_OF_MEMORY (-53 15)2520 #define VERR_IEM_DBGINFO_OUT_OF_MEMORY (-5323) 2516 2521 /** Recompiler: Debug info internal processing error \#1. */ 2517 #define VERR_IEM_DBGINFO_IPE_1 (-53 16)2522 #define VERR_IEM_DBGINFO_IPE_1 (-5324) 2518 2523 /** Recompiler: Debug info internal processing error \#2. */ 2519 #define VERR_IEM_DBGINFO_IPE_2 (-53 17)2524 #define VERR_IEM_DBGINFO_IPE_2 (-5325) 2520 2525 /** Recompiler: Fixup internal processing error \#1. */ 2521 #define VERR_IEM_FIXUP_IPE_1 (-53 18)2526 #define VERR_IEM_FIXUP_IPE_1 (-5326) 2522 2527 /** Recompiler: Too many fixups. */ 2523 #define VERR_IEM_FIXUP_TOO_MANY (-53 19)2528 #define VERR_IEM_FIXUP_TOO_MANY (-5327) 2524 2529 /** Recompiler: Out of memory. */ 2525 #define VERR_IEM_FIXUP_OUT_OF_MEMORY (-532 0)2530 #define VERR_IEM_FIXUP_OUT_OF_MEMORY (-5328) 2526 2531 /** Recompiler: Hit instruction buffer size limit. */ 2527 #define VERR_IEM_INSTR_BUF_TOO_LARGE (-532 1)2532 #define VERR_IEM_INSTR_BUF_TOO_LARGE (-5329) 2528 2533 /** Recompiler: Out of memory for the instruction buffer (regular heap). */ 2529 #define VERR_IEM_INSTR_BUF_OUT_OF_MEMORY (-53 22)2534 #define VERR_IEM_INSTR_BUF_OUT_OF_MEMORY (-5330) 2530 2535 /** Recompiler: Too many labels. */ 2531 #define VERR_IEM_LABEL_TOO_MANY (-53 23)2536 #define VERR_IEM_LABEL_TOO_MANY (-5331) 2532 2537 /** Recompiler: Out of memory for labels. */ 2533 #define VERR_IEM_LABEL_OUT_OF_MEMORY (-53 24)2538 #define VERR_IEM_LABEL_OUT_OF_MEMORY (-5332) 2534 2539 /** Recompiler: Label internal processing error \#1. */ 2535 #define VERR_IEM_LABEL_IPE_1 (-53 25)2540 #define VERR_IEM_LABEL_IPE_1 (-5333) 2536 2541 /** Recompiler: Label internal processing error \#2. */ 2537 #define VERR_IEM_LABEL_IPE_2 (-53 26)2542 #define VERR_IEM_LABEL_IPE_2 (-5334) 2538 2543 /** Recompiler: Label internal processing error \#3. */ 2539 #define VERR_IEM_LABEL_IPE_3 (-53 27)2544 #define VERR_IEM_LABEL_IPE_3 (-5335) 2540 2545 /** Recompiler: Label internal processing error \#4. */ 2541 #define VERR_IEM_LABEL_IPE_4 (-53 28)2546 #define VERR_IEM_LABEL_IPE_4 (-5336) 2542 2547 /** Recompiler: Label internal processing error \#5. */ 2543 #define VERR_IEM_LABEL_IPE_5 (-53 29)2548 #define VERR_IEM_LABEL_IPE_5 (-5337) 2544 2549 /** Recompiler: Label internal processing error \#6. */ 2545 #define VERR_IEM_LABEL_IPE_6 (-533 0)2550 #define VERR_IEM_LABEL_IPE_6 (-5338) 2546 2551 /** Recompiler: Label internal processing error \#7. */ 2547 #define VERR_IEM_LABEL_IPE_7 (-533 1)2552 #define VERR_IEM_LABEL_IPE_7 (-5339) 2548 2553 2549 2554 /** Recompiler: Out of host register. */
Note:
See TracChangeset
for help on using the changeset viewer.