Home
last modified time | relevance | path

Searched refs:modrm (Results 1 – 3 of 3) sorted by relevance

/art/runtime/arch/x86/
Dfault_handler_x86.cc103 uint8_t modrm; in GetInstructionSize() local
163 modrm = *pc++; in GetInstructionSize()
182 modrm = *pc++; in GetInstructionSize()
189 modrm = *pc++; in GetInstructionSize()
196 modrm = *pc++; in GetInstructionSize()
213 uint8_t mod = (modrm >> 6) & 3U /* 0b11 */; in GetInstructionSize()
216 if (mod != 3U /* 0b11 */ && (modrm & 7U /* 0b111 */) == 4) { in GetInstructionSize()
/art/compiler/dex/quick/x86/
Dassemble_x86.cc303 #define UNARY_ENCODING_MAP(opname, modrm, is_store, sets_ccodes, \ argument
309 … reg_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0, 0, modrm, 0, imm << 0, true…
310 …D | is_store | mem_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0, 0, modrm, 0, imm << 0, true…
311 …D | is_store | arr_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0, 0, modrm, 0, imm << 0, true…
312 … reg_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, 0, modrm, 0, imm << 1, fals…
313 …D | is_store | mem_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, 0, modrm, 0, imm << 1, fals…
314 …D | is_store | arr_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, 0, modrm, 0, imm << 1, fals…
315 … reg_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, 0, modrm, 0, imm << 2, fals…
316 …D | is_store | mem_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, 0, modrm, 0, imm << 2, fals…
317 …D | is_store | arr_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, 0, modrm, 0, imm << 2, fals…
[all …]
/art/disassembler/
Ddisassembler_x86.cc1275 uint8_t modrm = *instr; in DumpInstruction() local
1277 uint8_t mod = modrm >> 6; in DumpInstruction()
1278 uint8_t reg_or_opcode = (modrm >> 3) & 7; in DumpInstruction()
1279 uint8_t rm = modrm & 7; in DumpInstruction()