Changeset 100854 in vbox for trunk/src/VBox/VMM/testcase
- Timestamp:
- Aug 11, 2023 1:29:04 AM (21 months ago)
- svn:sync-xref-src-repo-rev:
- 158763
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstIEMCheckMc.cpp
r100840 r100854 182 182 183 183 #define IEMOP_HLP_DONE_DECODING() do { } while (0) 184 #define IEMOP_HLP_DONE_DECODING_EX(a_fFeature) do { } while (0) 184 185 185 186 #define IEMOP_HLP_DECODED_NL_1(a_uDisOpNo, a_fIemOpFlags, a_uDisParam0, a_fDisOpType) do { } while (0) … … 557 558 558 559 #define IEM_ARG_CHECK_CALLBACK(a_idx, a_User) int RT_CONCAT(iArgCheck_,a_idx); NOREF(RT_CONCAT(iArgCheck_,a_idx)) 559 #define IEM_MC_BEGIN(a_cArgs, a_cLocals ) \560 #define IEM_MC_BEGIN(a_cArgs, a_cLocals, a_fFlags) \ 560 561 { \ 561 const uint8_t cArgs= (a_cArgs); NOREF(cArgs); \562 const uint8_t cLocals= (a_cLocals); NOREF(cLocals); \563 const uint 8_t fMcBegin = (a_cArgs) + (a_cLocals); \562 const uint8_t cArgs = (a_cArgs); NOREF(cArgs); \ 563 const uint8_t cLocals = (a_cLocals); NOREF(cLocals); \ 564 const uint32_t fMcBegin = (((a_cArgs) + (a_cLocals)) << 23) + (a_fFlags); \ 564 565 IEM_REPEAT(a_cArgs, IEM_ARG_CHECK, 0); \ 565 566
Note:
See TracChangeset
for help on using the changeset viewer.