Home
last modified time | relevance | path

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

/external/v8/src/x87/
Ddisasm-x87.cc328 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
329 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
670 byte escape_opcode = *data; in FPUInstruction() local
671 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
675 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
677 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
681 int DisassemblerX87::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
686 switch (escape_opcode) { in MemoryFPUInstruction()
764 int DisassemblerX87::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
769 switch (escape_opcode) { in RegisterFPUInstruction()
/external/v8/src/ia32/
Ddisasm-ia32.cc391 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
392 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1018 byte escape_opcode = *data; in FPUInstruction() local
1019 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1023 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1025 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
1029 int DisassemblerIA32::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
1034 switch (escape_opcode) { in MemoryFPUInstruction()
1076 int DisassemblerIA32::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1081 switch (escape_opcode) { in RegisterFPUInstruction()
/external/v8/src/x64/
Ddisasm-x64.cc480 int MemoryFPUInstruction(int escape_opcode, int regop, byte* modrm_start);
481 int RegisterFPUInstruction(int escape_opcode, byte modrm_byte);
1446 byte escape_opcode = *data; in FPUInstruction() local
1447 DCHECK_EQ(0xD8, escape_opcode & 0xF8); in FPUInstruction()
1451 return RegisterFPUInstruction(escape_opcode, modrm_byte); in FPUInstruction()
1453 return MemoryFPUInstruction(escape_opcode, modrm_byte, data+1); in FPUInstruction()
1457 int DisassemblerX64::MemoryFPUInstruction(int escape_opcode, in MemoryFPUInstruction() argument
1462 switch (escape_opcode) { in MemoryFPUInstruction()
1501 int DisassemblerX64::RegisterFPUInstruction(int escape_opcode, in RegisterFPUInstruction() argument
1506 switch (escape_opcode) { in RegisterFPUInstruction()