Home
last modified time | relevance | path

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

/external/v8/src/ia32/
Ddisasm-ia32.cc390 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
391 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1281 byte escape_opcode = *data; in FPUInstruction() local
1282 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1286 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1288 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
1292 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
1297 switch (escape_opcode) { in MemoryFPUInstruction()
1339 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1344 switch (escape_opcode) { in RegisterFPUInstruction()
/external/v8/src/x64/
Ddisasm-x64.cc474 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
475 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1456 byte escape_opcode = *data; in FPUInstruction() local
1457 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1461 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1463 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
1467 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
1472 switch (escape_opcode) { in MemoryFPUInstruction()
1511 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1516 switch (escape_opcode) { in RegisterFPUInstruction()