Home
last modified time | relevance | path

Searched refs:ia_opcode (Results 1 – 6 of 6) sorted by relevance

/dports/emulators/bochs/bochs-2.7/cpu/decoder/
H A Dfetchdecode32.cc1962 return ia_opcode; in decoder_vex32()
2103 return ia_opcode; in decoder_evex32()
2177 return ia_opcode; in decoder_xop32()
2215 return ia_opcode; in decoder32_fp_escape()
2243 return ia_opcode; in decoder32_modrm()
2266 return ia_opcode; in decoder32()
2297 return ia_opcode; in decoder_creg32()
2324 return ia_opcode; in decoder32_3dnow()
2348 return ia_opcode; in decoder_simple32()
2371 return ia_opcode; in findOpcode()
[all …]
H A Dfetchdecode64.cc1227 return(ia_opcode); in decoder_vex64()
1292 return ia_opcode; in decoder_vex64()
1455 return ia_opcode; in decoder_evex64()
1558 return ia_opcode; in decoder_xop64()
1598 return ia_opcode; in decoder64_fp_escape()
1625 return ia_opcode; in decoder64_modrm()
1656 return ia_opcode; in decoder64()
1695 return ia_opcode; in decoder_creg64()
1721 return ia_opcode; in decoder64_3dnow()
1751 return ia_opcode; in decoder_simple64()
[all …]
H A Dinstr.h29 const char *get_bx_opcode_name(Bit16u ia_opcode);
30 const char *get_intel_disasm_opcode_name(Bit16u ia_opcode);
31 const char *get_gas_disasm_opcode_name(Bit16u ia_opcode);
67 Bit16u ia_opcode; member
283 return metaInfo.ia_opcode; in getIaOpcode()
286 metaInfo.ia_opcode = op; in setIaOpcode()
H A Dfetchdecode.h476 #define form_opcode(attr, ia_opcode) ((attr) | (Bit64u(ia_opcode) << 48) | ATTR_LOCK_PREF… argument
477 #define last_opcode(attr, ia_opcode) ((attr) | (Bit64u(ia_opcode) << 48) | ATTR_LOCK_PREF… argument
479 #define form_opcode_lockable(attr, ia_opcode) ((attr) | (Bit64u(ia_opcode) << 48)) argument
480 #define last_opcode_lockable(attr, ia_opcode) ((attr) | (Bit64u(ia_opcode) << 48) | ATTR_LAST… argument
H A Ddisasm.cc46 unsigned evex_displ8_compression(const bxInstruction_c *i, unsigned ia_opcode, unsigned src, unsign…
754 Bit16u ia_opcode = i->getIaOpcode(); in disasm_source() local
755 unsigned src = (unsigned) BxOpcodesTable[ia_opcode].src[n]; in disasm_source()
844 Bit16u ia_opcode = i->getIaOpcode(); in disasm() local
846 disbufptr = dis_sprintf(disbufptr, "%s", get_gas_disasm_opcode_name(ia_opcode)); in disasm()
849 disbufptr = dis_sprintf(disbufptr, "%s", get_intel_disasm_opcode_name(ia_opcode)); in disasm()
/dports/emulators/bochs/bochs-2.7/cpu/
H A Dproc_ctrl.cc36 unsigned ia_opcode = i->getIaOpcode(); in BxError() local
38 if (ia_opcode == BX_IA_ERROR) { in BxError()
47 BX_DEBUG(("%s: instruction not supported - signalling #UD", get_bx_opcode_name(ia_opcode))); in BxError()