Changeset 102510 in vbox for trunk/include
- Timestamp:
- Dec 6, 2023 9:39:10 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 160654
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/armv8.h
r102449 r102510 2656 2656 2657 2657 2658 /** A64: Encodes an MOV instruction. 2659 * This is an alias for "orr dst, xzr, src". */ 2660 DECL_FORCE_INLINE(uint32_t) Armv8A64MkInstrMov(uint32_t iRegResult, uint32_t idxRegSrc, bool f64Bit = true) 2661 { 2662 return Armv8A64MkInstrOrr(iRegResult, ARMV8_A64_REG_XZR, idxRegSrc, f64Bit); 2663 } 2664 2665 2658 2666 /** A64: Encodes an ORN instruction. 2659 2667 * @see Armv8A64MkInstrLogicalShiftedReg for parameter details. */
Note:
See TracChangeset
for help on using the changeset viewer.