Changeset 104341 in vbox
- Timestamp:
- Apr 17, 2024 1:12:21 PM (10 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/armv8.h
r104323 r104341 2299 2299 * @{ */ 2300 2300 2301 /** A64: Official NOP instruction. */ 2302 #define ARMV8_A64_INSTR_NOP UINT32_C(0xd503201f) 2301 2303 /** A64: Return instruction. */ 2302 2304 #define ARMV8_A64_INSTR_RET UINT32_C(0xd65f03c0) -
trunk/src/VBox/VMM/include/IEMN8veRecompilerEmit.h
r104168 r104341 68 68 /* nop */ 69 69 uint32_t *pu32CodeBuf = iemNativeInstrBufEnsure(pReNative, off, 1); 70 pu32CodeBuf[off++] = 0xd503201f; 70 if (uInfo == 0) 71 pu32CodeBuf[off++] = ARMV8_A64_INSTR_NOP; 72 else 73 pu32CodeBuf[off++] = Armv8A64MkInstrMovZ(ARMV8_A64_REG_XZR, (uint16_t)uInfo); 71 74 72 75 RT_NOREF(uInfo);
Note:
See TracChangeset
for help on using the changeset viewer.