Changeset 102741 in vbox
- Timestamp:
- Jan 1, 2024 2:14:58 AM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompilerEmit.h
r102736 r102741 1219 1219 if (iGprDst >= 8 || iGprSrc >= 8) 1220 1220 pbCodeBuf[off++] = (iGprDst < 8 ? 0 : X86_OP_REX_R) | (iGprSrc < 8 ? 0 : X86_OP_REX_B); 1221 else if (iGprSrc >= 4) 1222 pbCodeBuf[off++] = X86_OP_REX; 1221 1223 pbCodeBuf[off++] = 0x0f; 1222 1224 pbCodeBuf[off++] = 0xbe; … … 1249 1251 if (iGprDst >= 8 || iGprSrc >= 8) 1250 1252 pbCodeBuf[off++] = (iGprDst < 8 ? 0 : X86_OP_REX_R) | (iGprSrc < 8 ? 0 : X86_OP_REX_B); 1253 else if (iGprSrc >= 4) 1254 pbCodeBuf[off++] = X86_OP_REX; 1251 1255 pbCodeBuf[off++] = 0x0f; 1252 1256 pbCodeBuf[off++] = 0xbe;
Note:
See TracChangeset
for help on using the changeset viewer.