Home
last modified time | relevance | path

Searched refs:INST_PRE_OP_SIZE (Results 1 – 5 of 5) sorted by relevance

/dports/devel/distorm/distorm-20121220-r230/src/
H A Doperands.c232 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract_modrm()
241 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract_modrm()
296 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract_modrm()
603 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract()
633 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract()
656 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract()
708 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract()
751 if ((instFlags & INST_PRE_OP_SIZE) && (ps->decodedPrefixes & INST_PRE_OP_SIZE)) { in operands_extract()
752 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract()
919 ps->usedPrefixes |= INST_PRE_OP_SIZE; in operands_extract()
[all …]
H A Dinstructions.c151 switch (ps->decodedPrefixes & (INST_PRE_OP_SIZE | INST_PRE_REPS)) in inst_lookup_prefixed()
157 case INST_PRE_OP_SIZE: in inst_lookup_prefixed()
162 ps->decodedPrefixes &= ~INST_PRE_OP_SIZE; in inst_lookup_prefixed()
204 if ((ii == NULL) || (~INST_INFO_FLAGS(ii) & INST_PRE_OP_SIZE)) return NULL; in inst_lookup_prefixed()
244 …_iflags illegal = (INST_PRE_OP_SIZE | INST_PRE_LOCK | INST_PRE_REP | INST_PRE_REPNZ | INST_PRE_REX… in inst_vex_lookup()
458 if ((~INST_INFO_FLAGS(ii) & INST_PRE_OP_SIZE) && (isWaitIncluded)) return NULL; in inst_lookup()
H A Ddecoder.c62 if (decodedPrefixes & INST_PRE_OP_SIZE) return OpSizeTable[dt]; in decode_get_effective_op_size()
132 (ps->decodedPrefixes & INST_PRE_OP_SIZE) && in decode_inst()
135 ps->decodedPrefixes &= ~INST_PRE_OP_SIZE; in decode_inst()
291 …NEMONIC) && ((instFlags & (INST_32BITS | INST_64BITS)) == 0)) ps->usedPrefixes |= INST_PRE_OP_SIZE; in decode_inst()
300 ps->usedPrefixes |= INST_PRE_OP_SIZE; in decode_inst()
329 …stFlags & INST_NATIVE) && (ps->decodedPrefixes & INST_PRE_OP_SIZE)) ps->usedPrefixes |= INST_PRE_O… in decode_inst()
H A Dprefix.c120 if (unusedPrefixesDiff & INST_PRE_OP_SIZE) prefixes_ignore(ps, PFXIDX_OP_SIZE); in prefixes_set_unused_mask()
260 ps->decodedPrefixes |= INST_PRE_OP_SIZE; in prefixes_decode()
H A Dinstructions.h316 #define INST_PRE_OP_SIZE (1 << 13) macro