Lines Matching refs:pu8Code
701 uint8_t *pu8Code = (uint8_t *)(uintptr_t)GCPtr;
716 if ( pu8Code[0] != 0xf2 /* REPNE/REPNZ */
717 && pu8Code[0] != 0xf3 /* REP/REPE/REPZ */
718 && pu8Code[0] != 0x2e /* CS: */
719 && pu8Code[0] != 0x36 /* SS: */
720 && pu8Code[0] != 0x3e /* DS: */
721 && pu8Code[0] != 0x26 /* ES: */
722 && pu8Code[0] != 0x64 /* FS: */
723 && pu8Code[0] != 0x65 /* GS: */
724 && pu8Code[0] != 0x66 /* OS */
725 && pu8Code[0] != 0x67 /* AS */
728 pu8Code++;
747 if ( pu8Code[0] == 0x9a /* CALL FAR */
748 || ( pu8Code[0] == 0xff /* CALL FAR [] */
749 && (pu8Code[1] & X86_OPCODE_MODRM_REG_MASK) == 0x18)
750 || pu8Code[0] == 0xea /* JMP FAR */
751 || ( pu8Code[0] == 0xff /* JMP FAR [] */
752 && (pu8Code[1] & X86_OPCODE_MODRM_REG_MASK) == 0x28)
753 || pu8Code[0] == 0xcf /* IRET */