Changeset 105731 in vbox for trunk/include
- Timestamp:
- Aug 19, 2024 4:57:30 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164436
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis-armv8.h
r101539 r105731 61 61 * or DISUSE_REG_GEN64 is set in fUse. */ 62 62 uint8_t idxGenReg; 63 /** IPRT System register encoding. */ 64 uint32_t idSysReg; 63 65 } Reg; 64 66 /** Scale factor. */ … … 77 79 78 80 81 /** Pointer to a constant instruction class descriptor. */ 82 typedef const struct DISARMV8INSNCLASS *PCDISARMV8INSNCLASS; 83 84 79 85 /** 80 86 * The armv8 specific disassembler state and result. … … 82 88 typedef struct 83 89 { 84 uint8_t bDummy; 90 /** Internal: Pointer to the instruction class table. */ 91 PCDISARMV8INSNCLASS pInsnClass; 85 92 } DIS_STATE_ARMV8_T; 86 93 AssertCompile(sizeof(DIS_STATE_ARMV8_T) <= 32);
Note:
See TracChangeset
for help on using the changeset viewer.