Changeset 41746 in vbox for trunk/include/VBox/dis.h
- Timestamp:
- Jun 15, 2012 2:39:49 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78554
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r41745 r41746 519 519 /** 520 520 * The diassembler state and result. 521 * 522 * @todo ModRM and SIB could be joined and 6 bytes would be saved, only it 523 * doesn't make any sense right now because of structure alignment. 521 524 */ 522 525 typedef struct DISCPUSTATE … … 555 558 unsigned u; 556 559 } SIB; 560 /** SIB displacment. */ 557 561 int32_t i32SibDisp; 558 562 … … 580 584 /** The instruction size. */ 581 585 uint8_t cbInstr; 582 uint8_t abUnused[2]; 586 /** The number of valid bytes in abInstr. 587 * @todo Implement caching and read-ahead tomorrow. */ 588 uint8_t cbCachedInstr; 589 /** Unused byte. */ 590 uint8_t abUnused[1]; 583 591 /* off: 0x078 (120) */ 584 592 /** Return code set by a worker function like the opcode bytes readers. */
Note:
See TracChangeset
for help on using the changeset viewer.