Home
last modified time | relevance | path

Searched refs:escape_opcode (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/x64/
Ddisasm-x64.cc429 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
430 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
833 byte escape_opcode = *data; in FPUInstruction() local
834 ASSERT_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
838 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
840 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
844 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
849 switch (escape_opcode) { in MemoryFPUInstruction()
888 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
893 switch (escape_opcode) { in RegisterFPUInstruction()
/external/v8/src/ia32/
Ddisasm-ia32.cc345 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
346 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
661 byte escape_opcode = *data; in FPUInstruction() local
662 ASSERT_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
666 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
668 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
672 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
677 switch (escape_opcode) { in MemoryFPUInstruction()
718 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
723 switch (escape_opcode) { in RegisterFPUInstruction()