Searched defs:SIB (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Disassembler/
H A DDisasmCore.cpp699 * SIB byte: (not 16-bit mode)
707 unsigned scale = pDis->SIB.Bits.Scale;
708 unsigned base = pDis->SIB.Bits.Base;
709 unsigned index = pDis->SIB.Bits.Index;
712 /* There's no way to distinguish between SIB and VSIB
764 uint8_t SIB = disReadByte(pDis, offInstr); local
767 pDis->SIB.Bits.Base = SIB_BASE(SIB);
768 pDis->SIB.Bits.Index = SIB_INDEX(SIB);
795 uint8_t SIB = disReadByte(pDis, offInstr); local
[all...]
/vbox/include/VBox/
H A Ddis.h421 /** The base register from ModR/M or SIB, applicable if DISUSE_BASE is
453 /** The SIB index register meaning, applicable if DISUSE_INDEX is
556 /** SIB fields. */
566 } SIB; member in struct:DISSTATE
618 /** SIB displacment. */

Completed in 49 milliseconds