Searched refs:modrm_byte (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc416 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
821 byte modrm_byte = *(data+1); local
823 if (modrm_byte >= 0xC0) {
824 return RegisterFPUInstruction(escape_opcode, modrm_byte);
826 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1);
831 int modrm_byte,
834 int regop = (modrm_byte >> 3) & 0x7; // reg/op field of modrm byte.
875 byte modrm_byte) {
876 bool has_register = false; // Is the FPU register encoded in modrm_byte?
885 switch (modrm_byte
830 MemoryFPUInstruction(int escape_opcode, int modrm_byte, byte* modrm_start) argument
874 RegisterFPUInstruction(int escape_opcode, byte modrm_byte) argument
[all...]
/external/chromium_org/v8/src/ia32/
H A Ddisasm-ia32.cc342 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
686 byte modrm_byte = *(data+1); local
688 if (modrm_byte >= 0xC0) {
689 return RegisterFPUInstruction(escape_opcode, modrm_byte);
691 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1);
696 int modrm_byte,
699 int regop = (modrm_byte >> 3) & 0x7; // reg/op field of modrm byte.
743 byte modrm_byte) {
744 bool has_register = false; // Is the FPU register encoded in modrm_byte?
750 switch (modrm_byte
695 MemoryFPUInstruction(int escape_opcode, int modrm_byte, byte* modrm_start) argument
742 RegisterFPUInstruction(int escape_opcode, byte modrm_byte) argument
[all...]
/external/chromium_org/v8/src/x87/
H A Ddisasm-x87.cc342 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
686 byte modrm_byte = *(data+1); local
688 if (modrm_byte >= 0xC0) {
689 return RegisterFPUInstruction(escape_opcode, modrm_byte);
691 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1);
696 int modrm_byte,
699 int regop = (modrm_byte >> 3) & 0x7; // reg/op field of modrm byte.
764 byte modrm_byte) {
765 bool has_register = false; // Is the FPU register encoded in modrm_byte?
771 switch (modrm_byte
695 MemoryFPUInstruction(int escape_opcode, int modrm_byte, byte* modrm_start) argument
763 RegisterFPUInstruction(int escape_opcode, byte modrm_byte) argument
[all...]

Completed in 538 milliseconds