Changeset 106125 in vbox for trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
- Timestamp:
- Sep 23, 2024 10:42:27 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164903
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
r106124 r106125 99 99 #if 1 || defined(DOXYGEN_RUNNING) 100 100 # define IEMNATIVE_WITH_RECOMPILER_PROLOGUE_SINGLETON 101 #endif102 103 /** @def IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE104 * Enable this to use common epilogue and tail code for all TBs in a chunk. */105 #if 1 || defined(DOXYGEN_RUNNING)106 # define IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE107 101 #endif 108 102 … … 521 515 kIemNativeLabelType_ReturnWithFlags, 522 516 kIemNativeLabelType_NonZeroRetOrPassUp, 523 #ifdef IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE524 517 kIemNativeLabelType_ReturnSuccess, /**< Sets eax/w0 to zero and returns. */ 525 #else526 kIemNativeLabelType_Return,527 #endif528 518 /** The last fixup for branches that can span almost the whole TB length. 529 519 * @note Whether kIemNativeLabelType_Return needs to be one of these is 530 520 * a bit questionable, since nobody jumps to it except other tail code. */ 531 #ifdef IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE532 521 kIemNativeLabelType_LastWholeTbBranch = kIemNativeLabelType_ReturnSuccess, 533 #else534 kIemNativeLabelType_LastWholeTbBranch = kIemNativeLabelType_Return,535 #endif536 522 /** The last fixup for branches that exits the TB. */ 537 #ifdef IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE538 523 kIemNativeLabelType_LastTbExit = kIemNativeLabelType_ReturnSuccess, 539 #else540 kIemNativeLabelType_LastTbExit = kIemNativeLabelType_Return,541 #endif542 524 543 525 /** Loop-jump target. */ … … 579 561 580 562 563 581 564 /** Native code generator fixup types. */ 582 565 typedef enum … … 612 595 typedef IEMNATIVEFIXUP *PIEMNATIVEFIXUP; 613 596 614 #ifdef IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE 597 615 598 616 599 /** Native code generator fixup to per chunk TB tail code. */ … … 638 621 typedef const IEMNATIVEPERCHUNKCTX *PCIEMNATIVEPERCHUNKCTX; 639 622 640 #endif /* IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE */641 623 642 624 … … 1625 1607 PIEMNATIVEFIXUP paFixups; 1626 1608 1627 #ifdef IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE1628 1609 /** Actual number of fixups in paTbExitFixups. */ 1629 1610 uint32_t cTbExitFixups; … … 1632 1613 /** Buffer used by the recompiler for recording fixups when generating code. */ 1633 1614 PIEMNATIVEEXITFIXUP paTbExitFixups; 1634 #endif1635 1615 1636 1616 #if defined(IEMNATIVE_WITH_TB_DEBUG_INFO) || defined(VBOX_WITH_STATISTICS) … … 1858 1838 DECL_HIDDEN_THROW(void) iemNativeAddFixup(PIEMRECOMPILERSTATE pReNative, uint32_t offWhere, uint32_t idxLabel, 1859 1839 IEMNATIVEFIXUPTYPE enmType, int8_t offAddend = 0); 1860 #ifdef IEMNATIVE_WITH_RECOMPILER_PER_CHUNK_TAIL_CODE 1861 DECL_HIDDEN_THROW(void) iemNativeAddTbExitFixup(PIEMRECOMPILERSTATE pReNative, uint32_t offWhere, IEMNATIVELABELTYPE enmExitReason); 1862 #endif 1840 DECL_HIDDEN_THROW(void) iemNativeAddTbExitFixup(PIEMRECOMPILERSTATE pReNative, uint32_t offWhere, 1841 IEMNATIVELABELTYPE enmExitReason); 1863 1842 DECL_HIDDEN_THROW(PIEMNATIVEINSTR) iemNativeInstrBufEnsureSlow(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint32_t cInstrReq); 1864 1843
Note:
See TracChangeset
for help on using the changeset viewer.