Changeset 97214 in vbox
- Timestamp:
- Oct 18, 2022 3:53:50 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstructionsOneByte.cpp.h
r97138 r97214 8372 8372 8373 8373 /** 8374 * Common worker for FPU instructions working on ST0 and ST n, only affecting8374 * Common worker for FPU instructions working on ST0 and ST1, only affecting 8375 8375 * flags, and popping twice when done. 8376 8376 * 8377 8377 * @param pfnAImpl Pointer to the instruction implementation (assembly). 8378 8378 */ 8379 FNIEMOP_DEF_1(iemOpHlpFpuNoStore_st0_st N_pop_pop, PFNIEMAIMPLFPUR80FSW, pfnAImpl)8379 FNIEMOP_DEF_1(iemOpHlpFpuNoStore_st0_st1_pop_pop, PFNIEMAIMPLFPUR80FSW, pfnAImpl) 8380 8380 { 8381 8381 IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX(); … … 8407 8407 FNIEMOP_DEF(iemOp_fucompp) 8408 8408 { 8409 IEMOP_MNEMONIC(fucompp _st0_stN, "fucompp st0,stN");8410 return FNIEMOP_CALL_1(iemOpHlpFpuNoStore_st0_st N_pop_pop, iemAImpl_fucom_r80_by_r80);8409 IEMOP_MNEMONIC(fucompp, "fucompp"); 8410 return FNIEMOP_CALL_1(iemOpHlpFpuNoStore_st0_st1_pop_pop, iemAImpl_fucom_r80_by_r80); 8411 8411 } 8412 8412 … … 9687 9687 FNIEMOP_DEF(iemOp_fcompp) 9688 9688 { 9689 IEMOP_MNEMONIC(fcompp _st0_stN, "fcompp st0,stN");9690 return FNIEMOP_CALL_1(iemOpHlpFpuNoStore_st0_st N_pop_pop, iemAImpl_fcom_r80_by_r80);9689 IEMOP_MNEMONIC(fcompp, "fcompp"); 9690 return FNIEMOP_CALL_1(iemOpHlpFpuNoStore_st0_st1_pop_pop, iemAImpl_fcom_r80_by_r80); 9691 9691 } 9692 9692
Note:
See TracChangeset
for help on using the changeset viewer.