Searched refs:escape_opcode (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/v8/src/x64/ |
D | disasm-x64.cc | 415 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start); 416 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte); 816 byte escape_opcode = *data; in FPUInstruction() local 817 ASSERT_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction() 821 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction() 823 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction() 827 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument 832 switch (escape_opcode) { in MemoryFPUInstruction() 871 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument 876 switch (escape_opcode) { in RegisterFPUInstruction()
|
/external/chromium_org/v8/src/ia32/ |
D | disasm-ia32.cc | 341 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start); 342 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte); 667 byte escape_opcode = *data; in FPUInstruction() local 668 ASSERT_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction() 672 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction() 674 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction() 678 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument 683 switch (escape_opcode) { in MemoryFPUInstruction() 725 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument 730 switch (escape_opcode) { in RegisterFPUInstruction()
|
/external/chromium_org/v8/src/x87/ |
D | disasm-x87.cc | 341 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start); 342 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte); 667 byte escape_opcode = *data; in FPUInstruction() local 668 ASSERT_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction() 672 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction() 674 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction() 678 int DisassemblerX87::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument 683 switch (escape_opcode) { in MemoryFPUInstruction() 725 int DisassemblerX87::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument 730 switch (escape_opcode) { in RegisterFPUInstruction()
|