Home | History | Annotate | Download | only in dtrace

Lines Matching refs:sib

106 #define	FASTTRAP_SIB_SCALE(sib)		(((sib) >> 6) & 0x3)
107 #define FASTTRAP_SIB_INDEX(sib) (((sib) >> 3) & 0x7)
108 #define FASTTRAP_SIB_BASE(sib) ((sib) & 0x7)
435 uint8_t sib = instr[start + 2];
436 uint_t index = FASTTRAP_SIB_INDEX(sib);
437 uint_t base = FASTTRAP_SIB_BASE(sib);
439 tp->ftt_scale = FASTTRAP_SIB_SCALE(sib);