HomeSort by relevance Sort by last modified time
    Searched full:modrm_byte (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/v8/src/ia32/
disasm-ia32.cc 342 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
669 byte modrm_byte = *(data+1); local
671 if (modrm_byte >= 0xC0) {
672 return RegisterFPUInstruction(escape_opcode, modrm_byte);
674 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1);
679 int modrm_byte,
682 int regop = (modrm_byte >> 3) & 0x7; // reg/op field of modrm byte.
726 byte modrm_byte) {
727 bool has_register = false; // Is the FPU register encoded in modrm_byte?
733 switch (modrm_byte & 0xF8)
    [all...]
  /external/chromium_org/v8/src/x87/
disasm-x87.cc 342 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
669 byte modrm_byte = *(data+1); local
671 if (modrm_byte >= 0xC0) {
672 return RegisterFPUInstruction(escape_opcode, modrm_byte);
674 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1);
679 int modrm_byte,
682 int regop = (modrm_byte >> 3) & 0x7; // reg/op field of modrm byte.
726 byte modrm_byte) {
727 bool has_register = false; // Is the FPU register encoded in modrm_byte?
733 switch (modrm_byte & 0xF8)
    [all...]
  /external/chromium_org/v8/src/x64/
disasm-x64.cc 416 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
818 byte modrm_byte = *(data+1); local
820 if (modrm_byte >= 0xC0) {
821 return RegisterFPUInstruction(escape_opcode, modrm_byte);
823 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1);
828 int modrm_byte,
831 int regop = (modrm_byte >> 3) & 0x7; // reg/op field of modrm byte.
872 byte modrm_byte) {
873 bool has_register = false; // Is the FPU register encoded in modrm_byte?
882 switch (modrm_byte & 0xF8)
    [all...]
  /external/qemu/disas/
i386.c 114 /* modrm_byte.regmem for twobyte escape */
    [all...]

Completed in 185 milliseconds